fix: use local tsc binary in pre-commit hook to avoid PATH issues (#71)

This commit is contained in:
2026-02-15 15:13:41 -06:00
committed by GitHub
parent 73165877fa
commit 6079e558ff
+1 -1
View File
@@ -26,7 +26,7 @@ pre-commit:
frontend-typecheck: frontend-typecheck:
glob: "frontend/**/*.{ts,tsx}" glob: "frontend/**/*.{ts,tsx}"
root: "frontend/" root: "frontend/"
run: pnpm exec tsc --noEmit run: ./node_modules/.bin/tsc --noEmit
pre-push: pre-push:
parallel: true parallel: true