2019-03-19 00:13:01 +00:00
|
|
|
{
|
|
|
|
"compileOnSave": false,
|
|
|
|
"compilerOptions": {
|
2022-12-13 23:53:41 +00:00
|
|
|
"baseUrl": "./",
|
2021-12-29 23:08:41 +00:00
|
|
|
"outDir": "./backend",
|
2020-12-20 23:36:04 +00:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
2022-12-28 02:05:42 +00:00
|
|
|
"allowSyntheticDefaultImports": true,
|
2022-12-28 03:04:23 +00:00
|
|
|
"strict": false,
|
2022-12-13 23:53:41 +00:00
|
|
|
"noImplicitOverride": false,
|
|
|
|
"noPropertyAccessFromIndexSignature": false,
|
2022-12-28 02:05:42 +00:00
|
|
|
"strictPropertyInitialization":false,
|
|
|
|
"strictNullChecks": false,
|
|
|
|
"noImplicitAny": false,
|
2020-12-20 23:36:04 +00:00
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
2022-12-14 05:41:44 +00:00
|
|
|
"sourceMap": false,
|
2022-12-13 23:53:41 +00:00
|
|
|
"declaration": false,
|
2022-12-28 02:05:42 +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,
|
2022-11-24 03:30:45 +00:00
|
|
|
"target": "ES2022",
|
2022-12-13 23:53:41 +00:00
|
|
|
"module": "ES2022",
|
|
|
|
"useDefineForClassFields": false,
|
2019-03-19 00:13:01 +00:00
|
|
|
"lib": [
|
2022-12-13 23:53:41 +00:00
|
|
|
"ES2022",
|
2019-03-19 00:13:01 +00:00
|
|
|
"dom"
|
2022-11-24 03:30:45 +00:00
|
|
|
],
|
2022-12-13 23:53:41 +00:00
|
|
|
"paths": {
|
|
|
|
"crypto": ["node_modules/crypto-browserify"],
|
2022-12-28 02:05:42 +00:00
|
|
|
"stream": ["node_modules/stream-browserify"]
|
2022-12-13 23:53:41 +00:00
|
|
|
}
|
2019-07-27 18:20:17 +00:00
|
|
|
},
|
2021-12-29 23:08:41 +00:00
|
|
|
"include": [
|
|
|
|
"./server/**/*"
|
2022-12-28 02:05:42 +00:00
|
|
|
],
|
2019-07-27 18:20:17 +00:00
|
|
|
"angularCompilerOptions": {
|
2022-12-13 23:53:41 +00:00
|
|
|
"enableI18nLegacyMessageIdFormat": false,
|
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
|
|
|
}
|