We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The tslint-language-service plugin is loaded and you will see warnings from tslint.
No remove the plugin definition from the tsconfig.json.
{ "compilerOptions": { // "plugins": [ // { // "name": "tslint-language-service" // } // ], "module": "commonjs", "target": "es6", "allowJs": true, "noImplicitAny": false, "sourceMap": false } }
Now the plugin is no longer loaded. My understanding is that contributed TS server plugins are now automatically loaded.
The text was updated successfully, but these errors were encountered:
Are you using the workspace version of TypeScript?
Sorry, something went wrong.
No, this workspace is not using the workspace version. The workspace doesn´t have a workspace version of TypeScript.
Interestingly the lit-hmtl language server plugin is loaded and activated without any configuration in the tsconfig.json.
lit-hmtl
The source of the extension can be found here https://github.com/Microsoft/vscode-ts-tslint, but the VSIX had to be patched manually due to node-module dependencies see https://github.com/Microsoft/vscode-ts-tslint/blob/master/Notes.md.
Small bug in contribution, should be:
"typescriptServerPlugins": [ { "name": "tslint-language-service" } ]
I've pushed a fix. I'll also add a schema for this contribution point.
Add proper contribution schema for ts server pluguins
857db02
#50682
@mjbvz thanks for catching this! I´ve published a new version of the extension.
mjbvz
No branches or pull requests
The tslint-language-service plugin is loaded and you will see warnings from tslint.

No remove the plugin definition from the tsconfig.json.
Now the plugin is no longer loaded. My understanding is that contributed TS server plugins are now automatically loaded.
The text was updated successfully, but these errors were encountered: