From 382d78d90ef26108ebaa14d04e96d7a175f2e1f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ivan=20Stankovi=C4=87?= Date: Mon, 9 Feb 2026 11:58:14 +0100 Subject: [PATCH] chore: Makefile: invoke tsc via bun For cases where tsc is managed by bun, not by the OS package manager. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 51017638b1..5570568bef 100644 --- a/Makefile +++ b/Makefile @@ -730,7 +730,7 @@ ts-fmt: $(STAMPS)/ts-fmt ## Format TypeScript files via eslint $(STAMPS)/ts-check: $(TS_SRCS) $(TS_TEST_FILES) cd $(JS_DIR) && bun eslint --max-warnings=0 && \ - tsc --noEmit + bun x tsc --noEmit $(TOUCH_STAMP) .PHONY: ts-check