timelimit-server/tsconfig.json
2024-03-18 01:00:00 +01:00

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
}