From 0d6f411a925bf12da2f450d088295e4e9388bd35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E7=BF=94?= Date: Sun, 29 Mar 2026 08:10:12 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=8E=92=E9=99=A4=E6=B5=8B=E8=AF=95?= =?UTF-8?q?=E6=96=87=E4=BB=B6=E5=92=8C=20dist=20=E7=9B=AE=E5=BD=95?= =?UTF-8?q?=E7=9A=84=E7=B1=BB=E5=9E=8B=E6=A3=80=E6=9F=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在 tsconfig.json 中排除所有测试文件 - 排除 dist 目录 - 修复 type-check 步骤失败问题 --- tsconfig.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 747a7e3..558454c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -47,6 +47,11 @@ "exclude": [ "node_modules", "tests", - "e2e" + "e2e", + "**/*.test.ts", + "**/*.test.tsx", + "**/*.spec.ts", + "**/*.spec.tsx", + "dist" ] }