From 9b41bb8d810cfb64a3de5228df405010fd0fa2f7 Mon Sep 17 00:00:00 2001 From: t8y2 <1156263951@qq.com> Date: Mon, 25 May 2026 10:32:11 +0800 Subject: [PATCH] fix: exclude test files from vue-tsc type checking in CI build --- apps/desktop/tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/desktop/tsconfig.json b/apps/desktop/tsconfig.json index 495e83ca5..019020eaa 100644 --- a/apps/desktop/tsconfig.json +++ b/apps/desktop/tsconfig.json @@ -20,5 +20,6 @@ "@/*": ["./src/*"] } }, - "include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue"] + "include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue"], + "exclude": ["src/**/__tests__/**"] }