vscode-docker/tsconfig.json

27 строки
766 B
JSON
Исходник Обычный вид История

{
"compilerOptions": {
"module": "commonjs",
2021-04-16 21:46:46 +03:00
"target": "es6",
"outDir": "out",
"lib": [
2021-04-16 21:46:46 +03:00
"es6"
],
"sourceMap": true,
"rootDir": "src",
2021-04-16 21:46:46 +03:00
"strict": true, /* enable all strict type-checking options */
"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
"noImplicitAny": false, // TODO
2022-02-22 20:36:21 +03:00
"noImplicitOverride": false, // TODO
"strictNullChecks": false, // TODO
},
"exclude": [
"node_modules",
2021-04-16 21:46:46 +03:00
".vscode-test"
]
}