mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
build: set paths for devtools & adev (#62574)
This allows the IDE to find the right imports PR Close #62574
This commit is contained in:
parent
745ea44394
commit
7bcaf01ace
3 changed files with 7 additions and 3 deletions
|
|
@ -12,6 +12,5 @@
|
|||
"jsxFactory": "h",
|
||||
"jsxFragmentFactory": "Fragment",
|
||||
"types": ["node"],
|
||||
"paths": {},
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -16,6 +16,7 @@
|
|||
"target": "es2020",
|
||||
"lib": ["es2020", "dom", "dom.iterable"],
|
||||
"types": ["chrome"],
|
||||
// TODO: Have an IDE specific tsconfig file
|
||||
"paths": {
|
||||
"@angular/*": ["../packages/*/index"]
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue