Exclude transpiled code and dependencies from VSCode search

This commit is contained in:
Michael B. Gale
2025-09-25 12:32:31 +01:00
parent e2e1db3e4e
commit 77a9259761

View File

@@ -8,6 +8,11 @@
"build": true, "build": true,
"lib": true, "lib": true,
}, },
"search.exclude": {
"**/node_modules": true,
"build": true,
"lib": true,
},
// Installing a new Node package often triggers VS Code's git limit warnings as there is typically // Installing a new Node package often triggers VS Code's git limit warnings as there is typically
// an intermediate stage where many files are modified. This setting suppresses these warnings. // an intermediate stage where many files are modified. This setting suppresses these warnings.
"git.ignoreLimitWarning": true, "git.ignoreLimitWarning": true,