From 602f02741aa232f21183eccbf42eadcdf3de3624 Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Fri, 17 Jul 2020 10:11:48 -0400 Subject: [PATCH] configure big folders to ignore for vscode (#593) Signed-off-by: Sebastian Malton Co-authored-by: Sebastian Malton --- tsconfig.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 2a110d2c5a..0555cd40ee 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -32,5 +32,13 @@ "compilerOptions": { "module": "CommonJS" } - } + }, + "exclude": [ + "node_modules", + "out", + "dist", + "coverage", + "binaries", + "static" + ] }