mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
9cf7b44f7c
Those options are enabled by default, they don't need to be explicit.
24 lines
659 B
JSON
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/*"]
|
|
}
|
|
}
|
|
}
|