Turning off “Language Service Disabled” error message in VS2017

后端 未结 9 1619
故里飘歌
故里飘歌 2020-12-14 05:53

We are getting the following \"Error\" message in our MVC web application in Visual studio 2017 Enterprise.

The language service is disabled for proje

9条回答
  •  半阙折子戏
    2020-12-14 06:41

    For me is helping the next solution. I've create a tsconfig.json file in root of the my project with "disableSizeLimit": "true" option.

    So, my tsconfig.json file is:

    {
      "compilerOptions": {
      "disableSizeLimit": "true"
    },
    "exclude": []
    }
    

提交回复
热议问题