Hide build output from vscode explorer

This commit is contained in:
Daniel Imms
2024-07-07 09:12:28 -07:00
parent faed3e7c80
commit 89e315ab2b
+6
View File
@@ -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",