Skip to content

Commit

Permalink
Set disableLineTextInReferences=true in TS user preferences (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakebailey committed Jan 17, 2023
1 parent 4350e03 commit 5edba92
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/exerciseServer.ts
Expand Up @@ -136,7 +136,7 @@ async function exerciseServerWorker(testDir: string, tsserverPath: string, repla
"command": "configure",
"arguments": {
"preferences": {
"disableLineTextInReferences": false, // Match VS Code (and avoid uninteresting errors)
"disableLineTextInReferences": true, // Match VS Code (and avoid uninteresting errors)
"includePackageJsonAutoImports": "off" // Handle per-request instead
},
"watchOptions": {
Expand Down Expand Up @@ -433,4 +433,4 @@ ${JSON.stringify(response, undefined, 2)}`);

return response;
}
}
}

0 comments on commit 5edba92

Please sign in to comment.