From 4949b40f1c48fc99e6a666d03728de9a504c29c8 Mon Sep 17 00:00:00 2001 From: Raphael Westphal Date: Tue, 18 Aug 2026 14:57:53 +0200 Subject: [PATCH] fix: pin plugin typecheck to tsc 5.9 (bunx default resolved ancient tsc) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 41f1106..fec629b 100644 --- a/Makefile +++ b/Makefile @@ -30,7 +30,7 @@ verify: daemon cd daemon && staticcheck ./... || true cd daemon && go test ./... -count=1 cd web && bun run build - cd plugin && bunx tsc --noEmit -p tsconfig.json + cd plugin && bunx tsc@5.9 --noEmit -p tsconfig.json test: cd daemon && go test ./... -count=1