Ride-The-Lightning-RTL/tsconfig.json

45 lines
1.1 KiB
JSON
Raw Normal View History

{
"compileOnSave": false,
"compilerOptions": {
2022-12-14 00:53:41 +01:00
"baseUrl": "./",
2021-12-30 00:08:41 +01:00
"outDir": "./backend",
"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,
"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,
"experimentalDecorators": true,
"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,
"lib": [
2022-12-14 00:53:41 +01:00
"ES2022",
"dom"
2022-11-24 04:30:45 +01:00
],
2022-12-14 00:53:41 +01:00
"paths": {
"crypto": ["node_modules/crypto-browserify"],
2022-12-28 03:05:42 +01:00
"stream": ["node_modules/stream-browserify"]
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,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": false
}
}