exclude node_modules from search (#91995)

## About The Pull Request
No player facing changes. Excludes the node_modules folder from vscode
search by default. With the new package management, we don't want to
always see all the module files while searching through tgui files.

## Changelog
Excludes node_modules from vscode search
This commit is contained in:
Kashargul
2025-07-07 06:51:41 +02:00
committed by Roxy
parent 990c57d9d0
commit 3b3c21734a

View File

@@ -18,5 +18,8 @@
"workbench.editorAssociations": {
"*.dmi": "dmiEditor.dmiEditor"
},
"search.exclude": {
"**/node_modules": true
},
"Lua.diagnostics.enable": false
}