bw-hspc-contest-env/extension/bwcontest/tsconfig.json

17 lines
554 B
JSON
Raw Normal View History

2023-05-04 22:09:35 -04:00
{
"compilerOptions": {
"module": "commonjs",
"target": "ES2020",
"outDir": "out",
2023-05-06 00:01:27 -04:00
"lib": ["ES2020"],
2023-05-04 22:09:35 -04:00
"sourceMap": true,
"rootDir": "src",
2023-05-06 00:01:27 -04:00
"strict": true /* enable all strict type-checking options */
2023-05-04 22:09:35 -04:00
/* 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. */
2023-05-06 00:01:27 -04:00
},
"exclude": ["webviews"]
2023-05-04 22:09:35 -04:00
}