Turning off “Language Service Disabled” error message in VS2017
To solve this issue do the following: Create file in root directory of your project and call it tsconfig.json Add this: { “compilerOptions”: { “allowJs”: true, “noEmit”: true, “module”: “system”, “noImplicitAny”: true, “removeComments”: true, “preserveConstEnums”: true, “sourceMap”: true }, “include”: [ “scripts” ], “exclude”: [ ], “typeAcquisition”: { “enable”: true } } Please have a … Read more