Asp.net tsconfig生成大量错误

Asp.net tsconfig生成大量错误,asp.net,visual-studio-2017,tsconfig,Asp.net,Visual Studio 2017,Tsconfig,我现在使用VS2017而不是VS2015,在限制这些方面我有很多困难 当我不使用任何类型脚本文件时,我已经配置了一个名为tsconfig.json的文件。 我不确定我是否正确配置了它 tsconfig.json 现在我发现自己有一百个错误,都是相似的,但不是在同一个此类文件中: 代码:TS6054 说明: 费希尔酒店 “C:/Users/haege/Source/Repos/Site\u Internet\u IDF8/Back\u Office/Project\u Readme.html” 无

我现在使用VS2017而不是VS2015,在限制这些方面我有很多困难

当我不使用任何类型脚本文件时,我已经配置了一个名为tsconfig.json的文件。 我不确定我是否正确配置了它

tsconfig.json

现在我发现自己有一百个错误,都是相似的,但不是在同一个此类文件中:

代码:TS6054

说明
费希尔酒店 “C:/Users/haege/Source/Repos/Site\u Internet\u IDF8/Back\u Office/Project\u Readme.html” 无需支付延期责任。Les seules扩展 在“.ts”、“.tsx”、“.d.ts”、“.js”、“.jsx”上充电

Projet:后台办公室(Projet tsconfig)

对齐:1

镇压行动:行动

如何解决这个问题

{
  "compilerOptions": {
    "allowJs": true, // These settings apply to .js files as well as .ts files
    "noEmit": true // Do not compile the JS (or TS) files in this project on build
  },
  "exclude": [
    "node_modules", // Don't include any JavaScript found under "node_modules"
    "bower_components", // Don't include any JavaScript found under "bower_components"
    "./Scripts"
  ],
  "typeAcquisition": {
    "enable": true // Enable automatic fetching of type definitions for .js libraries
  }
}