Skip to content

Commit 4aa2dea

Browse files
bobrosoftPatrickJS
authored andcommitted
fix(build): bug with AoT build when using npm link'ed libraries (#1835)
1 parent 7213025 commit 4aa2dea

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

tsconfig.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@
1515
"dom",
1616
"es6"
1717
],
18+
"baseUrl": ".",
19+
"paths": {
20+
"@angular/*": ["node_modules/@angular/*"]
21+
},
1822
"typeRoots": [
1923
"node_modules/@types"
2024
],

tsconfig.webpack.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@
1515
"es2015",
1616
"dom"
1717
],
18+
"baseUrl": ".",
19+
"paths": {
20+
"@angular/*": ["node_modules/@angular/*"]
21+
},
1822
"typeRoots": [
1923
"node_modules/@types"
2024
],

0 commit comments

Comments
 (0)