Skip to content

Commit 1dabab1

Browse files
committed
fix: type declaration path aliases (VF-000) (#84)
<!-- You can erase any parts of this template not applicable to your Pull Request. --> **Fixes or implements VF-000** ### Brief description. What is this change? Path aliases in type declaration files were not being resolved during build time, so types for packages that imported this as a dependency are broken. Co-authored-by: Tyler Stewart <[email protected]>
1 parent 3caa82c commit 1dabab1

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

tsconfig.build.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,8 @@
44
"outDir": "./build",
55
"declaration": true,
66
"plugins": [
7-
{
8-
"transform": "typescript-transform-paths"
9-
}
7+
{ "transform": "typescript-transform-paths" },
8+
{ "transform": "typescript-transform-paths", "afterDeclarations": true }
109
]
1110
},
1211
"exclude": [

0 commit comments

Comments
 (0)