From 04c43dec4cbc9b20aa3b23a1fbd2e87cdf305489 Mon Sep 17 00:00:00 2001 From: Wayne Sutton Date: Sun, 14 Dec 2025 11:53:19 -0800 Subject: [PATCH] fix: remove tsc from build script, Vite handles TypeScript --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 97eff74..c18ee5c 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,8 @@ "scripts": { "dev": "vite", "dev:convex": "convex dev", - "build": "npx tsc && npx vite build", + "build": "vite build", + "typecheck": "tsc --noEmit", "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0", "preview": "vite preview", "sync": "npx tsx scripts/sync-posts.ts",