fix: use npx tsc in build script to ensure tsc is resolved from node_modules

This commit is contained in:
2026-04-15 05:07:45 +00:00
parent 95972b329e
commit 0b55bc873e

View File

@@ -5,7 +5,7 @@
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",
"build": "tsc && vite build", "build": "npx tsc && vite build",
"preview": "vite preview", "preview": "vite preview",
"test": "vitest run", "test": "vitest run",
"test:watch": "vitest", "test:watch": "vitest",