场景:
我的 Angular 项目中有以下结构:
Project
Folder1
tsconfig.json
Folder1.1
file1.1.1
Folder1.2
file1.2.1
Folder2
tsconfig.json
file2.1
tsconfig.json
在Folder1
包含
"paths": {
"Folder1.2/*": [
"../Folder1.2/*"
],
}
这样file1.1.1
就可以引用file1.2.1
asFolder1.2/file1.2.1
而不是.../Folder1.2/file1.2.1
.
问题:
file2.1
需要使用file1.1.1
。当我构建项目时,file2.1
抛出它找不到的错误Folder1.2/file1.2.1
。
我试过的:
我认为这只是因为文件的方式file2.1
没有别名。所以在我添加Folder1.2
Folder1
tsconfig.json
Folder2
"paths": {
"Folder1.2/*": [
"../Folder1/Folder1.2/*"
],
}
我仍然得到同样的错误。
有谁知道我应该如何处理这个?