Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Loading