forked from ci4s/train-trace
28 lines
846 B
JSON
28 lines
846 B
JSON
{
|
|
"compilerOptions": {
|
|
"downlevelIteration": true,
|
|
"emitDecoratorMetadata": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"experimentalDecorators": true,
|
|
"importHelpers": true,
|
|
"inlineSourceMap": true,
|
|
"lib": ["dom", "es2021", "dom.iterable"],
|
|
"moduleResolution": "node",
|
|
"module": "es2022",
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitOverride": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
// Don't scan the node_modules/@types folder for ambient types.
|
|
// This would force us to have all the types in the dependencies of
|
|
// each library.
|
|
// Instead we'll be explicit about declaring ambient type dependencies
|
|
// using the ///<reference types=""/> syntax.
|
|
"types": []
|
|
},
|
|
"angularCompilerOptions": {
|
|
"strictTemplates": true
|
|
}
|
|
}
|