We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b88a39d commit f53de02Copy full SHA for f53de02
CHANGELOG.md
@@ -2,6 +2,7 @@
2
3
### 0.27.0
4
5
+- Fix VLS crash for *.vue files in node_modules. #2006.
6
- Upgrade to TypeScript 4.0.2 and fix symbol outline issue. #1849.
7
- Improve JSDoc presentation in hover/completion in interpolation mode. #1337.
8
- Improve JSDoc presentation in hover/completion/signatureHelp. #2193.
server/src/services/vls.ts
@@ -472,6 +472,10 @@ export class VLS {
472
}
473
474
private triggerValidation(textDocument: TextDocument): void {
475
+ if (textDocument.uri.includes('node_modules')) {
476
+ return;
477
+ }
478
+
479
this.cleanPendingValidation(textDocument);
480
this.pendingValidationRequests[textDocument.uri] = setTimeout(() => {
481
delete this.pendingValidationRequests[textDocument.uri];
0 commit comments