build: set paths for devtools & adev (#62574)

This allows the IDE to find the right imports

PR Close #62574
This commit is contained in:
Matthieu Riegler
2025-07-10 16:34:04 +02:00
committed by Andrew Kushnir
parent 745ea44394
commit 7bcaf01ace
3 changed files with 7 additions and 3 deletions
+1 -2
View File
@@ -12,6 +12,5 @@
"jsxFactory": "h",
"jsxFragmentFactory": "Fragment",
"types": ["node"],
"paths": {},
}
}
}
+5 -1
View File
@@ -27,7 +27,11 @@
"jsx": "react",
"jsxFactory": "h",
"jsxFragmentFactory": "Fragment",
"skipLibCheck": true
"skipLibCheck": true,
"paths": {
"@angular/docs": ["./shared-docs"],
"@angular/*": ["../packages/*/index"]
}
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
+1
View File
@@ -16,6 +16,7 @@
"target": "es2020",
"lib": ["es2020", "dom", "dom.iterable"],
"types": ["chrome"],
// TODO: Have an IDE specific tsconfig file
"paths": {
"@angular/*": ["../packages/*/index"]
}