2
0
mirror of https://github.com/Ride-The-Lightning/RTL synced 2024-11-03 23:15:24 +00:00
RTL/tsconfig.json

26 lines
520 B
JSON
Raw Normal View History

{
"compileOnSave": false,
"compilerOptions": {
"importHelpers": true,
"outDir": "./angular",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
2019-07-27 18:20:17 +00:00
"module": "esnext",
2019-09-07 21:31:32 +00:00
"target": "es5",
"typeRoots": [
"node_modules/@types"
],
"lib": [
2019-07-27 18:20:17 +00:00
"es2018",
"dom"
]
2019-07-27 18:20:17 +00:00
},
"angularCompilerOptions": {
"fullTemplateTypeCheck": true,
"strictInjectionParameters": true
}
}