Ride-The-Lightning-RTL/tsconfig.json

44 lines
1.1 KiB
JSON
Raw Normal View History

{
"compileOnSave": false,
"compilerOptions": {
2023-08-15 16:51:25 -07:00
"baseUrl": "./",
2021-12-29 18:08:41 -05:00
"outDir": "./backend",
"forceConsistentCasingInFileNames": true,
2023-08-15 16:51:25 -07:00
"allowSyntheticDefaultImports": true,
"strict": false,
2023-08-15 16:51:25 -07:00
"noImplicitOverride": false,
"noPropertyAccessFromIndexSignature": false,
"strictPropertyInitialization":false,
"strictNullChecks": false,
2021-12-29 18:08:41 -05:00
"noImplicitAny": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
2021-12-29 18:08:41 -05:00
"sourceMap": false,
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
"moduleResolution": "node",
"importHelpers": true,
2023-08-15 16:51:25 -07:00
"target": "ES2022",
"module": "ES2022",
"useDefineForClassFields": false,
"lib": [
2023-08-15 16:51:25 -07:00
"ES2022",
"dom"
2023-08-15 16:51:25 -07:00
],
"paths": {
"crypto": ["node_modules/crypto-browserify"],
"stream": ["node_modules/stream-browserify"]
}
2019-07-27 14:20:17 -04:00
},
2021-12-29 18:08:41 -05:00
"include": [
"./server/**/*"
],
2019-07-27 14:20:17 -04:00
"angularCompilerOptions": {
2023-08-15 16:51:25 -07:00
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": false
}
}