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

24 lines
659 B
JSON

{
"compilerOptions": {
"noImplicitReturns": true,
"noImplicitOverride": true,
"noFallthroughCasesInSwitch": true,
"noPropertyAccessFromIndexSignature": true,
"esModuleInterop": true,
"declaration": true,
"sourceMap": true,
// Schematics are bundled into CommonJS for shipping.
"module": "ESNext",
"moduleResolution": "bundler",
"target": "es2022",
"lib": ["es2022"],
"types": ["node"],
"paths": {
"@angular/core": ["../"],
"@angular/compiler": ["../../compiler"],
"@angular/compiler-cli": ["../../compiler-cli"],
"@angular/compiler-cli/*": ["../../compiler-cli/*"]
}
}
}