Files
Matthieu Riegler 9cf7b44f7c build: remove explicit strict options
Those options are enabled by default, they don't need to be explicit.
2026-08-31 13:17:00 -07:00

32 lines
796 B
JSON

{
"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"
}
}
}
}