2015-10-17 02:54:30 +03:00
|
|
|
{
|
2016-10-20 01:58:14 +03:00
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
2021-04-16 21:46:46 +03:00
|
|
|
"target": "es6",
|
2016-10-20 01:58:14 +03:00
|
|
|
"outDir": "out",
|
|
|
|
"lib": [
|
2021-04-16 21:46:46 +03:00
|
|
|
"es6"
|
2016-10-20 01:58:14 +03:00
|
|
|
],
|
|
|
|
"sourceMap": true,
|
2021-07-20 20:10:33 +03:00
|
|
|
"rootDir": "src",
|
2021-04-16 21:46:46 +03:00
|
|
|
"strict": true, /* enable all strict type-checking options */
|
2018-09-12 23:17:38 +03:00
|
|
|
"alwaysStrict": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
2022-02-22 20:36:21 +03:00
|
|
|
"noImplicitReturns": true,
|
2021-04-16 21:46:46 +03:00
|
|
|
"noImplicitThis": true,
|
|
|
|
"noUnusedLocals": false, // ESLint takes care of this for us
|
|
|
|
"noUnusedParameters": false, // ESLint takes care of this for us
|
2018-09-12 23:17:38 +03:00
|
|
|
"noImplicitAny": false, // TODO
|
2022-02-22 20:36:21 +03:00
|
|
|
"noImplicitOverride": false, // TODO
|
2018-09-12 23:17:38 +03:00
|
|
|
"strictNullChecks": false, // TODO
|
2016-10-20 01:58:14 +03:00
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
2021-04-16 21:46:46 +03:00
|
|
|
".vscode-test"
|
2016-10-20 01:58:14 +03:00
|
|
|
]
|
2018-08-24 22:33:16 +03:00
|
|
|
}
|