From adec4a50df6c7e11bc769f08f3e0db1fb75096b9 Mon Sep 17 00:00:00 2001 From: ty <786220806@qq.com> Date: Mon, 23 Mar 2026 23:17:37 +0800 Subject: [PATCH] fix(ci): exclude packages dir from Next.js TypeScript compilation The tsconfig include pattern `**/*.ts` was picking up CLI package sources during Next.js build, causing missing `commander` module errors in CI. Co-Authored-By: Claude Opus 4.6 (1M context) --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 71f39fd..5ab5c53 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -36,6 +36,7 @@ ], "exclude": [ "node_modules", - "docs" + "docs", + "packages" ] } \ No newline at end of file