fix: remove tsc from build script, Vite handles TypeScript

This commit is contained in:
Wayne Sutton
2025-12-14 11:53:19 -08:00
parent 7c44b53436
commit 04c43dec4c

View File

@@ -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",