From 428c6b5e03a8db2ed54455fa00caa5c81346dd40 Mon Sep 17 00:00:00 2001 From: Naiyuan Qing <145280634+NevilleQingNY@users.noreply.github.com> Date: Tue, 10 Feb 2026 18:16:19 +0800 Subject: [PATCH] fix: typecheck depends on build for type declarations --- turbo.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/turbo.json b/turbo.json index 5f2b60ff..26442b3f 100644 --- a/turbo.json +++ b/turbo.json @@ -13,7 +13,7 @@ "persistent": true }, "typecheck": { - "dependsOn": ["^typecheck"], + "dependsOn": ["^build"], "inputs": ["src/**", "package.json", "tsconfig.json"], "outputs": [] },