mirror of
https://codeberg.org/timelimit/timelimit-server.git
synced 2025-10-03 01:39:31 +02:00
20 lines
420 B
JSON
20 lines
420 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./build",
|
|
"allowJs": true,
|
|
"target": "es2017",
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"module": "commonjs",
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": false,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"sourceMap": true
|
|
},
|
|
"include": [
|
|
"./src/**/*"
|
|
],
|
|
"compileOnSave": true
|
|
}
|