Skip to content

Commit bddd22a

Browse files
committed
fix(vscode): restore isAsync to avoid continuous request stuck
1 parent 5cb41fa commit bddd22a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/vscode/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ function launch(context: vscode.ExtensionContext) {
131131
'typescript.tsserverRequest',
132132
command,
133133
args,
134-
{ lowPriority: true, requireSemantic: true },
134+
{ isAsync: true, lowPriority: true, requireSemantic: true },
135135
);
136136
client.sendNotification('tsserver/response', [seq, res?.body]);
137137
});

0 commit comments

Comments
 (0)