From db0fae36049c3726b7ed0b9b5811a80f4096684b Mon Sep 17 00:00:00 2001 From: Max Widmaier <60905636+max-widmaier@users.noreply.github.com> Date: Tue, 30 Sep 2025 23:08:10 -0600 Subject: [PATCH 1/2] Update cli.js --- cli.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli.js b/cli.js index 7544d0d..15e5290 100755 --- a/cli.js +++ b/cli.js @@ -82,7 +82,7 @@ const { status } = spawnSync( `../.bin/tsc${process.platform === 'win32' ? '.cmd' : ''}`, ), ['-p', tmpTsconfigPath, ...remainingArgsToForward], - { stdio: 'inherit' }, + { stdio: 'inherit', shell: ${process.platform === 'win32' ? true : undefined} }, // Win32 seems to require a shell for running tsc... ) process.exit(status) From 54baec207baab2118b6d7f42db565c1dd8ae97a7 Mon Sep 17 00:00:00 2001 From: Max Widmaier <60905636+max-widmaier@users.noreply.github.com> Date: Tue, 30 Sep 2025 23:11:24 -0600 Subject: [PATCH 2/2] Update cli.js --- cli.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli.js b/cli.js index 15e5290..6375fab 100755 --- a/cli.js +++ b/cli.js @@ -82,7 +82,7 @@ const { status } = spawnSync( `../.bin/tsc${process.platform === 'win32' ? '.cmd' : ''}`, ), ['-p', tmpTsconfigPath, ...remainingArgsToForward], - { stdio: 'inherit', shell: ${process.platform === 'win32' ? true : undefined} }, // Win32 seems to require a shell for running tsc... + { stdio: 'inherit', shell: process.platform === 'win32' ? true : undefined }, // Win32 seems to require a shell for running tsc... ) process.exit(status)