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 7060f51 commit dd26822Copy full SHA for dd26822
src/server/session.ts
@@ -1590,7 +1590,8 @@ namespace ts.server {
1590
return this.requiredResponse(this.getDocumentHighlights(request.arguments, /*simplifiedResult*/ false));
1591
},
1592
[CommandNames.CompilerOptionsForInferredProjects]: (request: protocol.SetCompilerOptionsForInferredProjectsRequest) => {
1593
- return this.requiredResponse(this.setCompilerOptionsForInferredProjects(request.arguments));
+ this.setCompilerOptionsForInferredProjects(request.arguments);
1594
+ return this.requiredResponse(true);
1595
1596
[CommandNames.ProjectInfo]: (request: protocol.ProjectInfoRequest) => {
1597
return this.requiredResponse(this.getProjectInfo(request.arguments));
0 commit comments