mirror of
https://github.com/Ride-The-Lightning/RTL
synced 2024-10-31 09:20:27 +00:00
859d882018
Bug fix: Filtering is not working after redirect from dashboard #1216
44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
JSON
{
|
|
"compileOnSave": false,
|
|
"compilerOptions": {
|
|
"baseUrl": "./",
|
|
"outDir": "./backend",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": false,
|
|
"noImplicitOverride": false,
|
|
"noPropertyAccessFromIndexSignature": false,
|
|
"strictPropertyInitialization":false,
|
|
"strictNullChecks": false,
|
|
"noImplicitAny": false,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"sourceMap": false,
|
|
"declaration": false,
|
|
"downlevelIteration": true,
|
|
"experimentalDecorators": true,
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"target": "ES2022",
|
|
"module": "ES2022",
|
|
"useDefineForClassFields": false,
|
|
"lib": [
|
|
"ES2022",
|
|
"dom"
|
|
],
|
|
"paths": {
|
|
"crypto": ["node_modules/crypto-browserify"],
|
|
"stream": ["node_modules/stream-browserify"]
|
|
}
|
|
},
|
|
"include": [
|
|
"./server/**/*"
|
|
],
|
|
"angularCompilerOptions": {
|
|
"enableI18nLegacyMessageIdFormat": false,
|
|
"strictInjectionParameters": true,
|
|
"strictInputAccessModifiers": true,
|
|
"strictTemplates": false
|
|
}
|
|
}
|