Yes! To exclude folders from the Problems tab in VS Code, add a .vscode/settings.json file in your project root with these exclusions:
{
"problems.excludePatterns": [
"**`enter code here`/.history/**",
"**/node_modules/**",
"**/vendor/**",
"**/backups/**"
]
}