我现在使用的是VS2017而不是VS2015,我在限制这些方面遇到了很多麻烦。
当我不使用任何TypeScript文件时,我已经配置了一个名为tsconfig.json的文件。 我不确定我是否正确配置了它。
tsconfig.json
{
"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
}
}
现在我发现自己有一百个错误都是相似的,但不会出现在同一个文件中:
代码:TS6054
说明:
Le fichier 'C:/Users/haege/Source/Repos/Site_Internet_IDF8/Back_Office/Project_Readme.html' possèdeuneextension non prize en charge。 Les seules扩展 prises en charge sont'.ts','。tsx','。d.ts','。js','。jsx'。Projet :Back_Office(Projet tsconfig)
Ligne :1
Étatdela suppress :Actif
如何解决这个问题?