2020-12-20 23:36:04 +00:00
|
|
|
/* To learn more about this file see: https://angular.io/config/tsconfig. */
|
2019-03-19 00:13:01 +00:00
|
|
|
{
|
|
|
|
"compileOnSave": false,
|
|
|
|
"compilerOptions": {
|
2021-12-29 23:08:41 +00:00
|
|
|
"outDir": "./backend",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowJs": false,
|
2020-12-20 23:36:04 +00:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"strict": false,
|
2021-12-29 23:08:41 +00:00
|
|
|
"noImplicitAny": false,
|
2020-12-20 23:36:04 +00:00
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
2021-12-29 23:08:41 +00:00
|
|
|
"sourceMap": false,
|
2019-03-19 00:13:01 +00:00
|
|
|
"declaration": false,
|
2020-12-20 23:36:04 +00:00
|
|
|
"downlevelIteration": true,
|
2019-03-19 00:13:01 +00:00
|
|
|
"experimentalDecorators": true,
|
2020-12-20 23:36:04 +00:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"importHelpers": true,
|
2021-12-29 23:08:41 +00:00
|
|
|
"target": "es6",
|
2020-12-20 23:36:04 +00:00
|
|
|
"module": "es2020",
|
2019-03-19 00:13:01 +00:00
|
|
|
"typeRoots": [
|
|
|
|
"node_modules/@types"
|
|
|
|
],
|
|
|
|
"lib": [
|
2019-07-27 18:20:17 +00:00
|
|
|
"es2018",
|
2019-03-19 00:13:01 +00:00
|
|
|
"dom"
|
|
|
|
]
|
2019-07-27 18:20:17 +00:00
|
|
|
},
|
2021-12-29 23:08:41 +00:00
|
|
|
"include": [
|
|
|
|
"./server/**/*"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"typings/*",
|
|
|
|
"node_modules"
|
|
|
|
],
|
2019-07-27 18:20:17 +00:00
|
|
|
"angularCompilerOptions": {
|
2020-07-07 17:57:15 +00:00
|
|
|
"strictInjectionParameters": true,
|
2020-12-20 23:36:04 +00:00
|
|
|
"strictInputAccessModifiers": true,
|
|
|
|
"strictTemplates": false
|
|
|
|
}
|
2019-03-19 00:13:01 +00:00
|
|
|
}
|