From cb3be8383e63f0f106cb5dc5eb4431ee1053c764 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20O=E2=80=99Connor?= Date: Wed, 17 Jun 2020 08:50:28 -0700 Subject: [PATCH] Add more files to TypeScript excludes (#691) VSCode said that there are too many files in the project and asked to add more files to the exclude. This makes the error go away. --- tsconfig.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 21c4a84be..cbec45154 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -22,5 +22,11 @@ "esModuleInterop": true }, "include": ["packages/**/*", "typings/**/*", "www/**/*"], - "exclude": ["**/node_modules/**/*", "**/dist/**/*"] + "exclude": [ + "**/node_modules/**/*", + "**/dist/**/*", + "www/.cache/**", + "www/public/**", + "packages/*/.cache/**" + ] }