From 51917df45aeafea5089c8e29dc497a5a0df2eb8b Mon Sep 17 00:00:00 2001 From: eouzoe Date: Thu, 16 Jul 2026 13:52:12 +0800 Subject: [PATCH] fix(tooling): make `just typecheck` check each workspace --- Justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Justfile b/Justfile index 606e591..4262a9d 100644 --- a/Justfile +++ b/Justfile @@ -11,9 +11,9 @@ dev: lint: oxlint --type-aware -# TypeScript 型別檢查 +# TypeScript 型別檢查(根目錄無 tsconfig,逐 workspace 檢查) typecheck: - tsc --noEmit + for d in apps/backend apps/frontend packages/shared; do tsc --noEmit -p "$d" || exit 1; done # 執行測試 test: