2019-03-18 20:13:01 -04:00
|
|
|
{
|
|
|
|
"compileOnSave": false,
|
|
|
|
"compilerOptions": {
|
2022-12-13 15:53:41 -08:00
|
|
|
"baseUrl": "./",
|
2021-12-29 18:08:41 -05:00
|
|
|
"outDir": "./backend",
|
2020-12-20 18:36:04 -05:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
2022-12-27 18:05:42 -08:00
|
|
|
"allowSyntheticDefaultImports": true,
|
2022-12-27 19:04:23 -08:00
|
|
|
"strict": false,
|
2022-12-13 15:53:41 -08:00
|
|
|
"noImplicitOverride": false,
|
|
|
|
"noPropertyAccessFromIndexSignature": false,
|
2022-12-27 18:05:42 -08:00
|
|
|
"strictPropertyInitialization":false,
|
|
|
|
"strictNullChecks": false,
|
|
|
|
"noImplicitAny": false,
|
2020-12-20 18:36:04 -05:00
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
2022-12-27 18:05:42 -08:00
|
|
|
"suppressImplicitAnyIndexErrors": true,
|
2022-12-13 21:41:44 -08:00
|
|
|
"sourceMap": false,
|
2022-12-13 15:53:41 -08:00
|
|
|
"declaration": false,
|
2022-12-27 18:05:42 -08:00
|
|
|
"downlevelIteration": true,
|
2019-03-18 20:13:01 -04:00
|
|
|
"experimentalDecorators": true,
|
2020-12-20 18:36:04 -05:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"importHelpers": true,
|
2022-11-23 19:30:45 -08:00
|
|
|
"target": "ES2022",
|
2022-12-13 15:53:41 -08:00
|
|
|
"module": "ES2022",
|
|
|
|
"useDefineForClassFields": false,
|
2019-03-18 20:13:01 -04:00
|
|
|
"lib": [
|
2022-12-13 15:53:41 -08:00
|
|
|
"ES2022",
|
2019-03-18 20:13:01 -04:00
|
|
|
"dom"
|
2022-11-23 19:30:45 -08:00
|
|
|
],
|
2022-12-13 15:53:41 -08:00
|
|
|
"paths": {
|
|
|
|
"crypto": ["node_modules/crypto-browserify"],
|
2022-12-27 18:05:42 -08:00
|
|
|
"stream": ["node_modules/stream-browserify"]
|
2022-12-13 15:53:41 -08:00
|
|
|
}
|
2019-07-27 14:20:17 -04:00
|
|
|
},
|
2021-12-29 18:08:41 -05:00
|
|
|
"include": [
|
|
|
|
"./server/**/*"
|
2022-12-27 18:05:42 -08:00
|
|
|
],
|
2019-07-27 14:20:17 -04:00
|
|
|
"angularCompilerOptions": {
|
2022-12-13 15:53:41 -08:00
|
|
|
"enableI18nLegacyMessageIdFormat": false,
|
2020-07-07 13:57:15 -04:00
|
|
|
"strictInjectionParameters": true,
|
2020-12-20 18:36:04 -05:00
|
|
|
"strictInputAccessModifiers": true,
|
|
|
|
"strictTemplates": false
|
|
|
|
}
|
2019-03-18 20:13:01 -04:00
|
|
|
}
|