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

18 lines
588 B
JSON
Raw Permalink Normal View History

2023-05-04 22:09:35 -04:00
{
"compilerOptions": {
"module": "commonjs",
"target": "ES2020",
"outDir": "out",
2024-03-11 20:23:57 -04:00
"lib": ["ES2020", "DOM"],
2023-05-04 22:09:35 -04:00
"sourceMap": true,
"rootDir": "src",
2024-03-11 20:23:57 -04:00
"esModuleInterop": true,
"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
},
2024-03-11 20:23:57 -04:00
"exclude": ["webviews"]
}