27 строки
772 B
JSON
27 строки
772 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es2018",
|
|
"outDir": "out",
|
|
"lib": [
|
|
"es2018"
|
|
],
|
|
"sourceMap": true,
|
|
"rootDir": "src",
|
|
"strict": true, /* enable all strict type-checking options */
|
|
"alwaysStrict": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": false, // ESLint takes care of this for us
|
|
"noUnusedParameters": false, // ESLint takes care of this for us
|
|
"noImplicitAny": false, // TODO
|
|
"noImplicitOverride": false, // TODO
|
|
"strictNullChecks": false, // TODO
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
".vscode-test"
|
|
]
|
|
}
|