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