We are getting the following \"Error\" message in our MVC web application in Visual studio 2017 Enterprise.
The language service is disabled for proje
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": [] }