mirror of
https://codeberg.org/timelimit/timelimit-server.git
synced 2025-10-02 17:29:23 +02:00
21 lines
446 B
JSON
21 lines
446 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,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"./src/**/*"
|
|
],
|
|
"compileOnSave": true
|
|
}
|