Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
796 B
JSON
Raw Permalink Normal View History

2020-01-27 13:40:18 -05:00
{
"compilerOptions": {
"sourceMap": true,
"inlineSources": true,
"declaration": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": true,
"downlevelIteration": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"module": "esnext",
"moduleResolution": "bundler",
"esModuleInterop": true,
"importHelpers": true,
"target": "es2022",
"lib": ["es2022", "dom", "dom.iterable"],
"types": ["chrome"],
// TODO: Have an IDE specific tsconfig file
"paths": {
"@angular/*": ["../packages/*/index"]
}
},
"angularCompilerOptions": {
"strictInjectionParameters": true,
"extendedDiagnostics": {
"checks": {
"unusedStandaloneImports": "error"
}
}
}
}