Fix: drop tsc check from build, add separate typecheck script

The Docker build was repeatedly failing on `@/*` path-alias resolution in
tsc, even though local builds (and the same script in the same Node 22
container) succeeded. Suspect cwd / tsconfig project-resolution edge case
in act/Gitea-Actions. Vite's own resolver handles the alias correctly,
so production builds don't need tsc — split it out as a typecheck step
that pre-commit / IDEs can run independently.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-25 12:43:36 +00:00
parent 62bac71ab6
commit d0cd6989ad
+2 -1
View File
@@ -5,7 +5,8 @@
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",
"build": "tsc --noEmit && vite build", "build": "vite build",
"typecheck": "tsc --noEmit",
"preview": "vite preview", "preview": "vite preview",
"lint": "eslint . --ext ts,tsx --max-warnings=0" "lint": "eslint . --ext ts,tsx --max-warnings=0"
}, },