Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的角度项目工作正常,当我包含新的 ts 文件并从其他项目复制和粘贴文件内容时,我在导入语句中的模块名称下得到重复的标识符并且无法归档模块
您可以在文件中添加“filesGlob”条目tsconfig.json以排除不必要的文件。例如 :
tsconfig.json
"filesGlob": [ "./src/**/*.ts", "./test/**/*.ts", "!./node_modules/**/*.ts", "typings/browser.d.ts" ]
!表示您排除了 node_modules。让我知道它是否有效。或者您必须使用更多详细信息更新问题
!