vscode-remote-wsl-recommender/tsconfig.json

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

2021-01-11 20:00:15 +03:00
{
"compilerOptions": {
"module": "commonjs",
2021-09-21 18:33:35 +03:00
"target": "es2020",
2021-01-11 20:00:15 +03:00
"outDir": "out",
"lib": [
2021-09-21 18:33:35 +03:00
"es2020"
2021-01-11 20:00:15 +03:00
],
"sourceMap": true,
"rootDir": "src",
"strict": true /* enable all strict type-checking options */
/* Additional Checks */
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
// "noUnusedParameters": true, /* Report errors on unused parameters. */
},
"exclude": [
"node_modules",
".vscode-test"
]
}