mirror of
https://github.com/Ride-The-Lightning/RTL
synced 2024-10-31 09:20:27 +00:00
bea5980c6f
Release 0.12.0
42 lines
940 B
JSON
42 lines
940 B
JSON
/* To learn more about this file see: https://angular.io/config/tsconfig. */
|
|
{
|
|
"compileOnSave": false,
|
|
"compilerOptions": {
|
|
"outDir": "./backend",
|
|
"esModuleInterop": true,
|
|
"allowJs": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": false,
|
|
"noImplicitAny": false,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"sourceMap": false,
|
|
"declaration": false,
|
|
"downlevelIteration": true,
|
|
"experimentalDecorators": true,
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"target": "es6",
|
|
"module": "es2020",
|
|
"typeRoots": [
|
|
"node_modules/@types"
|
|
],
|
|
"lib": [
|
|
"es2018",
|
|
"dom"
|
|
]
|
|
},
|
|
"include": [
|
|
"./server/**/*"
|
|
],
|
|
"exclude": [
|
|
"typings/*",
|
|
"node_modules"
|
|
],
|
|
"angularCompilerOptions": {
|
|
"strictInjectionParameters": true,
|
|
"strictInputAccessModifiers": true,
|
|
"strictTemplates": false
|
|
}
|
|
}
|