angular/packages/core/schematics/tsconfig.json
Paul Gschwendtner 82f4590216 refactor(migrations): avoid relative imports in schematic code (#57214)
This allows us to bundle e.g. the signal input migration into
language-service without duplicating code. Rollup with Bazel may end up
duplicating because it isn't able to associate the local sources with
the linked modules from `node_modules/@angular/compiler-cli`.

PR Close #57214
2024-08-29 07:50:41 -07:00

24 lines
639 B
JSON

{
"compilerOptions": {
"noImplicitReturns": true,
"noImplicitOverride": true,
"noFallthroughCasesInSwitch": true,
"noPropertyAccessFromIndexSignature": true,
"esModuleInterop": true,
"strict": true,
"moduleResolution": "node",
"target": "es2022",
"lib": ["es2019"],
"types": ["jasmine"],
"baseUrl": ".",
"paths": {
"@angular/core": ["../"],
"@angular/compiler": ["../../compiler"],
"@angular/compiler-cli": ["../../compiler-cli"],
"@angular/compiler-cli/*": ["../../compiler-cli/*"]
}
},
"bazelOptions": {
"suppressTsconfigOverrideWarnings": true
}
}