angular/packages/language-service/tsconfig.json
Joey Perrott 4554c096fe build: add comment explaining path maps (#61584)
Add a commend explaning why the path mappings are in place.

PR Close #61584
2025-05-21 17:27:18 +00:00

12 lines
No EOL
348 B
JSON

{
"extends": "../tsconfig-build.json",
"compilerOptions": {
"types": ["node"],
"paths": {
"@angular/*": ["../*"],
// compiler-cli specific mapping is present to allow deep importing into the compiler code.
"@angular/compiler-cli": ["../compiler-cli"],
"@angular/compiler-cli/*": ["../compiler-cli/*"]
}
}
}