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 a05e479 commit fd15f29Copy full SHA for fd15f29
_extension/src/commands.ts
@@ -50,7 +50,7 @@ async function updateUseTsgoSetting(enable: boolean): Promise<void> {
50
useTsgo.globalValue !== undefined ? vscode.ConfigurationTarget.Global : undefined;
51
}
52
// Update the setting and restart the extension host (needed to change the state of the built-in TS extension)
53
- await tsConfig.update("experimental.useTsgo", enable, target);
+ await tsConfig.update("experimental.useTsgo", enable, target ?? vscode.ConfigurationTarget.Global);
54
await restartExtHostOnChangeIfNeeded();
55
56
0 commit comments