Remove restart call when enabling TS native

Fixes #266087

Should no longer be required after upstream changes
This commit is contained in:
Matt Bierner
2025-10-01 10:33:04 -07:00
parent c2527c9dae
commit 9b6c88bf2f

View File

@@ -68,7 +68,5 @@ async function updateTsgoSetting(enable: boolean): Promise<void> {
}
}
// Update the setting, restart the extension host, and enable the TypeScript Go extension
await tsConfig.update('experimental.useTsgo', enable, target);
await vscode.commands.executeCommand('workbench.action.restartExtensionHost');
}