From 89e315ab2b85ebd2b5f4e8c7de558d1af14b70a8 Mon Sep 17 00:00:00 2001 From: Daniel Imms <2193314+Tyriar@users.noreply.github.com> Date: Sun, 7 Jul 2024 09:12:28 -0700 Subject: [PATCH] Hide build output from vscode explorer --- .vscode/settings.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.vscode/settings.json b/.vscode/settings.json index 20356fd5..b6926a32 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -2,6 +2,12 @@ "files.associations": { ".eslintrc.json.typings": "jsonc" }, + // Hide output files from the file explorer, comment this out to see the build output + "files.exclude": { + "**/lib": true, + "**/out": true, + "**/out-*": true, + }, "typescript.preferences.importModuleSpecifier": "non-relative", "typescript.preferences.quoteStyle": "single", "mochaExplorer.envPath": ".mocha.env",