From 70658519dc8b1cc5b312ca0c3b7f232b7aea8140 Mon Sep 17 00:00:00 2001 From: Matt Bierner <12821956+mjbvz@users.noreply.github.com> Date: Wed, 11 Feb 2026 13:17:47 -0800 Subject: [PATCH] Enable tsgo by default in the workspace Tsgo language tooling should be feature complete at this point. There still may be bugs or more minor gaps, but we want more dogfooding to find these Enabling tsgo to help with this. It's still easy to switch back to tsc if you run into any blockers --- .vscode/settings.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.vscode/settings.json b/.vscode/settings.json index da775f21244..3e903f64675 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -94,6 +94,7 @@ "**/*.snap": true, }, // --- TypeScript --- + "typescript.experimental.useTsgo": true, "typescript.tsdk": "node_modules/typescript/lib", "typescript.preferences.importModuleSpecifier": "relative", "typescript.preferences.quoteStyle": "single",