From 0b55bc873ed48da80af119fbc1f879f599e3ee1e Mon Sep 17 00:00:00 2001 From: orion Date: Wed, 15 Apr 2026 05:07:45 +0000 Subject: [PATCH] fix: use npx tsc in build script to ensure tsc is resolved from node_modules --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f4d2449..984ebb4 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "type": "module", "scripts": { "dev": "vite", - "build": "tsc && vite build", + "build": "npx tsc && vite build", "preview": "vite preview", "test": "vitest run", "test:watch": "vitest",