2019-03-19 01:13:01 +01:00
|
|
|
{
|
|
|
|
"compileOnSave": false,
|
|
|
|
"compilerOptions": {
|
2021-12-30 00:08:41 +01:00
|
|
|
"outDir": "./backend",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowJs": false,
|
2020-12-21 00:36:04 +01:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"strict": false,
|
2021-12-30 00:08:41 +01:00
|
|
|
"noImplicitAny": false,
|
2020-12-21 00:36:04 +01:00
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
2021-12-30 00:08:41 +01:00
|
|
|
"sourceMap": false,
|
2019-03-19 01:13:01 +01:00
|
|
|
"declaration": false,
|
2020-12-21 00:36:04 +01:00
|
|
|
"downlevelIteration": true,
|
2019-03-19 01:13:01 +01:00
|
|
|
"experimentalDecorators": true,
|
2020-12-21 00:36:04 +01:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"importHelpers": true,
|
2022-11-24 04:30:45 +01:00
|
|
|
"target": "ES2022",
|
2020-12-21 00:36:04 +01:00
|
|
|
"module": "es2020",
|
2019-03-19 01:13:01 +01:00
|
|
|
"typeRoots": [
|
|
|
|
"node_modules/@types"
|
|
|
|
],
|
|
|
|
"lib": [
|
2019-07-27 20:20:17 +02:00
|
|
|
"es2018",
|
2019-03-19 01:13:01 +01:00
|
|
|
"dom"
|
2022-11-24 04:30:45 +01:00
|
|
|
],
|
|
|
|
"useDefineForClassFields": false
|
2019-07-27 20:20:17 +02:00
|
|
|
},
|
2021-12-30 00:08:41 +01:00
|
|
|
"include": [
|
|
|
|
"./server/**/*"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"typings/*",
|
|
|
|
"node_modules"
|
|
|
|
],
|
2019-07-27 20:20:17 +02:00
|
|
|
"angularCompilerOptions": {
|
2020-07-07 19:57:15 +02:00
|
|
|
"strictInjectionParameters": true,
|
2020-12-21 00:36:04 +01:00
|
|
|
"strictInputAccessModifiers": true,
|
|
|
|
"strictTemplates": false
|
|
|
|
}
|
2019-03-19 01:13:01 +01:00
|
|
|
}
|