From 7bef362afdbd776f8d6719380d4a38db2bddbe82 Mon Sep 17 00:00:00 2001 From: Jason Dent Date: Thu, 28 Mar 2024 10:15:27 +0100 Subject: [PATCH] chore: Reduce false positive errors in VS Code. VS Code was listing 1000s of issues in the problems pane because it was trying to "compile" all JavaScript files in place. --- tsconfig.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 3ee7a6c6e..2b9ed531f 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,3 +1,5 @@ { - "extends": "./tsconfig.base.json" + "extends": "./tsconfig.base.json", + "include": [], + "exclude": ["docs/**"] }