We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd29fc3 commit 7777d8aCopy full SHA for 7777d8a
1 file changed
src/typescript-service.ts
@@ -1267,6 +1267,7 @@ export class TypeScriptService {
1267
// Ensure files needed for most operations are fetched
1268
await this.projectManager.ensureReferencedFiles(uri).toPromise();
1269
this.projectManager.didOpen(uri, params.textDocument.text);
1270
+ await new Promise(resolve => setTimeout(resolve, 200));
1271
this._publishDiagnostics(uri);
1272
}
1273
@@ -1288,6 +1289,7 @@ export class TypeScriptService {
1288
1289
return;
1290
1291
this.projectManager.didChange(uri, text);
1292
1293
1294
1295
0 commit comments