From cdb6977dd66c420845ec8d81ba48586a078b6385 Mon Sep 17 00:00:00 2001 From: samueltlg Date: Sat, 27 Jun 2026 00:51:05 +0100 Subject: [PATCH] fix: update typecheck script to use npx for TypeScript compilation --- scripts/typecheck.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/typecheck.sh b/scripts/typecheck.sh index 16e1c120..ae118bed 100644 --- a/scripts/typecheck.sh +++ b/scripts/typecheck.sh @@ -7,7 +7,7 @@ set -e # the removed node10 resolution; --types node restores @types/node (no longer # auto-discovered); strict is on by default. echo "Running TypeScript type check..." -tsc --target es2022 --module es2022 --moduleResolution bundler --types node \ +npx tsc --target es2022 --module es2022 --moduleResolution bundler --types node \ --skipLibCheck -d --allowImportingTsExtensions true --emitDeclarationOnly \ --ignoreConfig --outDir /tmp/typecheck ./src/compute-engine.ts