[仅感染打字稿库创建者]
如果代码库包含绝对路径(通过配置tsconfig.json
和webpack),则Typescript编译器将生成具有相同绝对路径的所有d.ts文件,这些路径是无用的,因为我的lib使用者无法使用和他们在一起。
我看到的每个图书馆都在执行以下其中一项操作:
很显然,这两种选择都很糟糕。
我找不到适合的工作库。
我创建了一个库,该库生成具有绝对路径的损坏的d.ts文件:
https://github.com/stavalfi/lerna-yarn-workspaces-example/tree/master/packages/x-core
index.ts:
import { z, x } from 'shalom' // problem
export default function awesomeFn(y: number): x {
return z(1)
}
export { z, x } from './shalom' . // not a problem
生成的index.d.ts:
import { x } from './shalom'; /// GOOD - becuase I used relative
export default function awesomeFn(y: number): x;
export { z, x } from 'shalom'; /// BAD - because I used absolute
//# sourceMappingURL=index.d.ts.map .
是否存在不停止使用绝对路径或手动创建自己的single.d.ts文件的解决方案/解决方法?
答案 0 :(得分:0)
如果任何打字稿库创建者仍然存在此问题,我为babel-plugin-module-resolver创建了一个Webpack加载器,它将绝对路径转换为相对路径: https://github.com/stavalfi/babel-plugin-module-resolver-loader
它还通过将绝对路径的*.d.ts
文件转换为相对路径来解决问题。
您可能希望订阅/阅读此线程以获取其他解决方法: https://github.com/Microsoft/TypeScript/issues/15479