mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
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
24 lines
639 B
JSON
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
|
|
}
|
|
}
|