From 9e3e80595036c56c449517dce6926428f767ae1a Mon Sep 17 00:00:00 2001 From: Matt Bierner <12821956+mjbvz@users.noreply.github.com> Date: Mon, 2 Feb 2026 22:42:48 -0800 Subject: [PATCH] Fix for windows --- build/lib/tsgo.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build/lib/tsgo.ts b/build/lib/tsgo.ts index 04173c05fdb..3e709ef818b 100644 --- a/build/lib/tsgo.ts +++ b/build/lib/tsgo.ts @@ -37,7 +37,8 @@ export function spawnTsgo(projectPath: string): Promise { const child = cp.spawn(npx, args, { cwd: root, - stdio: ['ignore', 'pipe', 'pipe'] + stdio: ['ignore', 'pipe', 'pipe'], + shell: true }); let buffer = '';