fix: 排除测试文件和 dist 目录的类型检查
ci/woodpecker/push/woodpecker Pipeline failed

- 在 tsconfig.json 中排除所有测试文件
- 排除 dist 目录
- 修复 type-check 步骤失败问题
This commit is contained in:
张翔
2026-03-29 08:10:12 +08:00
parent d19c290365
commit 0d6f411a92
+6 -1
View File
@@ -47,6 +47,11 @@
"exclude": [
"node_modules",
"tests",
"e2e"
"e2e",
"**/*.test.ts",
"**/*.test.tsx",
"**/*.spec.ts",
"**/*.spec.tsx",
"dist"
]
}