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) <noreply@anthropic.com>
This commit is contained in:
ty
2026-03-23 23:17:37 +08:00
parent b93b3bcf4a
commit adec4a50df
+2 -1
View File
@@ -36,6 +36,7 @@
],
"exclude": [
"node_modules",
"docs"
"docs",
"packages"
]
}