From 522b39be864257384afac01d2ac63a40723b122a Mon Sep 17 00:00:00 2001 From: Daniel Imms <2193314+Tyriar@users.noreply.github.com> Date: Wed, 10 Jul 2024 06:55:55 -0700 Subject: [PATCH] Hide more folders from explorer --- .vscode/settings.json | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 4eb4e6dc..3bf1c691 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -4,9 +4,11 @@ }, // Hide output files from the file explorer, comment this out to see the build output "files.exclude": { - // "**/lib": true, - // "**/out": true, - // "**/out-*": true, + "**/.nyc_output": true, + "**/lib": true, + "**/dist": true, + "**/out": true, + "**/out-*": true, }, "typescript.preferences.importModuleSpecifier": "non-relative", "typescript.preferences.quoteStyle": "single",