2
0
mirror of https://github.com/Ride-The-Lightning/RTL synced 2024-11-11 13:10:41 +00:00
RTL/tsconfig.json

44 lines
1.1 KiB
JSON
Raw Normal View History

{
"compileOnSave": false,
"compilerOptions": {
2022-12-13 23:53:41 +00:00
"baseUrl": "./",
2021-12-29 23:08:41 +00:00
"outDir": "./backend",
"forceConsistentCasingInFileNames": true,
2022-12-28 02:05:42 +00:00
"allowSyntheticDefaultImports": true,
2022-12-28 03:04:23 +00:00
"strict": false,
2022-12-13 23:53:41 +00:00
"noImplicitOverride": false,
"noPropertyAccessFromIndexSignature": false,
2022-12-28 02:05:42 +00:00
"strictPropertyInitialization":false,
"strictNullChecks": false,
"noImplicitAny": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
2022-12-14 05:41:44 +00:00
"sourceMap": false,
2022-12-13 23:53:41 +00:00
"declaration": false,
2022-12-28 02:05:42 +00:00
"downlevelIteration": true,
"experimentalDecorators": true,
"moduleResolution": "node",
"importHelpers": true,
2022-11-24 03:30:45 +00:00
"target": "ES2022",
2022-12-13 23:53:41 +00:00
"module": "ES2022",
"useDefineForClassFields": false,
"lib": [
2022-12-13 23:53:41 +00:00
"ES2022",
"dom"
2022-11-24 03:30:45 +00:00
],
2022-12-13 23:53:41 +00:00
"paths": {
"crypto": ["node_modules/crypto-browserify"],
2022-12-28 02:05:42 +00:00
"stream": ["node_modules/stream-browserify"]
2022-12-13 23:53:41 +00:00
}
2019-07-27 18:20:17 +00:00
},
2021-12-29 23:08:41 +00:00
"include": [
"./server/**/*"
2022-12-28 02:05:42 +00:00
],
2019-07-27 18:20:17 +00:00
"angularCompilerOptions": {
2022-12-13 23:53:41 +00:00
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": false
}
}