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

24 lines
799 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",
"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. */
"paths": {
"@submissionRunner/*": ["../../shared/submissionRunner/*"],
"@extensionWeb/*": ["../../shared/extensionWeb/*"]
},
2023-05-06 00:01:27 -04:00
},
"exclude": ["webviews"],
"references": [
{ "path": "../../shared/submissionRunner" },
{ "path": "../../shared/extensionWeb" }
]
}