小编典典

打字稿错误“无法写入文件......因为它会覆盖输入文件。”

all

在 Visual Studio 2015 Update 3 中的 Typescript 2.2.1 项目中,我在错误列表中收到数百个错误,例如:

无法写入文件“C:/{{my-project}}/node_modules/buffer-shims/index.js”,因为它会覆盖输入文件。

看起来一直都是这样。它实际上并没有阻止构建,并且一切正常,但是错误列表会分散注意力,并且在发生“真实”错误时很难找到它们。

视觉工作室错误列表

这是我的tsconfig.json文件

{
  "compileOnSave": true,
  "compilerOptions": {
    "baseUrl": ".",
    "module": "commonjs",
    "noImplicitAny": true,
    "removeComments": true,
    "sourceMap": true,
    "target": "ES5",
    "forceConsistentCasingInFileNames": true,
    "strictNullChecks": true,
    "allowUnreachableCode": false,
    "allowUnusedLabels": false,
    "noFallthroughCasesInSwitch": true,
    "noImplicitReturns": true,
    "noImplicitThis": true,
    "noUnusedLocals": true,
    "noUnusedParameters": true,

    "typeRoots": [],
    "types": [] //Explicitly specify an empty array so that the TS2 @types modules are not acquired since we aren't ready for them yet.
  },
  "exclude": ["node_modules"]
}

我怎样才能摆脱所有这些错误?


阅读 119

收藏
2022-07-18

共1个答案

小编典典

似乎通过更新到 Typescript 2.3.x 为我解决了这个问题

此外,使用 Visual Studio 2017 也是一个很大的改进。我强烈建议您进行 两项更新。

2022-07-18