这个错误是什么意思?为什么要写入这个文件?即使我将该文件从项目中排除,该错误仍然存在。我该如何纠正这一点?
我将webpack.config.js文件删除
,问题仍然存在。
解决方法:
如果未指定exclude
,则仅node_modules和其他几个被排除也包括在内。以下为我工作:
"exclude": [ "node_modules", "public"]
注意exclude
不是compilerOptions
属性,但在同级别中tsconfig.json compilerOptions
。
然后没效果的话在compilerOptions对象加上 "outDir": "/"