在Visaul Studio 2017中编辑JavaScript源文件时,会出现以下错误:
The JavaScript language service has been disabled for the following project(s): ...
即使我完全禁用JavaScript语言服务,错误仍然存在。为什么会发生这种情况?如何阻止此错误消息始终显示?我可以完全禁用JavaScript语言服务吗?
答案 0 :(得分:1)
问题的解决方案只是使用tsconfig.json文件,即使我的解决方案中只有JavaScript文件。 我刚刚在项目的根目录中使用了以下tsconfig.json文件:
{
"compileOnSave": true,
"compilerOptions": {
"noImplicitAny": false,
"noEmitOnError": true,
"sourceMap": true,
"target": "es2015",
"module": "amd",
"allowJs": false,
"allowSyntheticDefaultImports": true
},
"exclude": [
"lib",
"node_modules"
]
}
答案 1 :(得分:0)
open for Visual Studio'开发人员命令行工具。跑 : devenv.exe / resetuserdata