bw-hspc-contest-env/sandbox/tsconfig.json

14 lines
277 B
JSON
Raw Normal View History

2023-05-07 19:00:55 -04:00
{
"compilerOptions": {
2023-05-08 13:58:47 -04:00
"module": "NodeNext",
2023-05-07 19:00:55 -04:00
"sourceMap": true,
2023-08-26 13:46:59 -04:00
"outDir": "./build",
2023-05-08 13:58:47 -04:00
"esModuleInterop": true,
"strict": true,
"paths": {
"@submissionRunner/*": ["../shared/submissionRunner/*"]
}
2023-05-07 19:00:55 -04:00
},
"references": [{ "path": "../shared/submissionRunner" }]
2023-05-07 19:00:55 -04:00
}