From 6079e558ff913d38c7f1c4aeb52cc09474c4ed20 Mon Sep 17 00:00:00 2001 From: Logan Jones Date: Sun, 15 Feb 2026 15:13:41 -0600 Subject: [PATCH] fix: use local tsc binary in pre-commit hook to avoid PATH issues (#71) --- lefthook.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lefthook.yml b/lefthook.yml index e507f16..4ee8cfe 100644 --- a/lefthook.yml +++ b/lefthook.yml @@ -26,7 +26,7 @@ pre-commit: frontend-typecheck: glob: "frontend/**/*.{ts,tsx}" root: "frontend/" - run: pnpm exec tsc --noEmit + run: ./node_modules/.bin/tsc --noEmit pre-push: parallel: true