标签: angular typescript tsconfig
我目前正在开发一个小型Angular库。为了缩短导入时间,我在paths中使用了tsconfig.json映射。但是,在构建库之后,发出的.js文件(在ES2015版本中)的导入不会更改,因为路径映射仅适用于Typescript编译器。
paths
tsconfig.json
.js
我的问题是,如何确保导入具有正确的路径而不必牺牲paths映射功能。我已经读过issue on GitHub about the module paths in emitted files,但没有找到合适的解决方案。