是否可以将 tsconfig `paths` 与(项目)`reference` 一起使用?
Is it possible to use tsconfig `paths` with a (project) `reference`?
我正在使用 project references in a typescript project, and was wondering if this will work with paths?
本质上,这需要为 rootDir
之外的目录创建命名路径。有没有人看到这样做?或者您可能直接知道它无法完成?
TIA
我一发布我的问题,就对路径进行了更多调整,它“正常工作”。
相关代码如下:
"paths": {
"@src/*": ["../src/*"],
},
"references": [
{ "path": "../" }
]
我正在使用 project references in a typescript project, and was wondering if this will work with paths?
本质上,这需要为 rootDir
之外的目录创建命名路径。有没有人看到这样做?或者您可能直接知道它无法完成?
TIA
我一发布我的问题,就对路径进行了更多调整,它“正常工作”。
相关代码如下:
"paths": {
"@src/*": ["../src/*"],
},
"references": [
{ "path": "../" }
]