22bc7460df
* Unify submission execution implementations into submissionRunner * Unify contestMonitorTypes definitions between extension & web * Make line separator in entry use LF * Add entry.sh for sandbox * Fix web imports * Sandbox read from .env --------- Co-authored-by: orosmatthew <orosmatthew@pm.me>
24 lines
799 B
JSON
24 lines
799 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "ES2020",
|
|
"outDir": "out",
|
|
"lib": ["ES2020"],
|
|
"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. */
|
|
"paths": {
|
|
"@submissionRunner/*": ["../../shared/submissionRunner/*"],
|
|
"@extensionWeb/*": ["../../shared/extensionWeb/*"]
|
|
},
|
|
},
|
|
"exclude": ["webviews"],
|
|
"references": [
|
|
{ "path": "../../shared/submissionRunner" },
|
|
{ "path": "../../shared/extensionWeb" }
|
|
]
|
|
} |