Ride-The-Lightning-RTL/tsconfig.json

45 lines
1.1 KiB
JSON
Raw Normal View History

{
"compileOnSave": false,
"compilerOptions": {
2022-12-13 15:53:41 -08:00
"baseUrl": "./",
2021-12-29 18:08:41 -05:00
"outDir": "./backend",
"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,
"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,
"experimentalDecorators": true,
"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,
"lib": [
2022-12-13 15:53:41 -08:00
"ES2022",
"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,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": false
}
}