From 250e7e2eb073665de0e583cce79a021ca25586f9 Mon Sep 17 00:00:00 2001 From: RainbowBird Date: Mon, 4 May 2026 19:47:38 +0800 Subject: [PATCH] chore(pocket): exclude build and public folder in tsconfig --- apps/stage-pocket/tsconfig.json | 7 ++++++- tsconfig.json | 3 ++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/apps/stage-pocket/tsconfig.json b/apps/stage-pocket/tsconfig.json index a50b0b23f..d87a503a3 100644 --- a/apps/stage-pocket/tsconfig.json +++ b/apps/stage-pocket/tsconfig.json @@ -37,5 +37,10 @@ "@vue-macros/volar/define-models", "@vue-macros/volar/define-slots" ] - } + }, + "exclude": [ + "**/build/**", + "**/dist/**", + "**/public/**" + ] } diff --git a/tsconfig.json b/tsconfig.json index c937fa7e0..7b3a6cc89 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -17,7 +17,8 @@ "skipLibCheck": true }, "exclude": [ + "node_modules", "**/dist/**", - "node_modules" + "**/build/**" ] }