From bb1515096ccc3b08bfb74193f0f21ecaef52c87f Mon Sep 17 00:00:00 2001 From: Yingchi Long Date: Fri, 19 Jul 2024 18:08:52 +0800 Subject: [PATCH] tsconfig: exclude node_modules and local directory --- tsconfig.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 6f9d7a5..1cc4ccc 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -97,5 +97,9 @@ /* Completeness */ // "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */ "skipLibCheck": true /* Skip type checking all .d.ts files. */ - } + }, + "exclude": [ + "node_modules", + "local", + ] }