Чтобы исключить лишние файлы из поиска нужно отредактировать секцию "search.exclude" в .vscode/settings.json или в Preferences:
{
// ...
"search.exclude": {
"**/.git": true,
"**/node_modules": true,
"**/bower_components": true,
"**/tmp": true
},
// ...
}