Reputation: 1529
Is there a setting in Visual Studio Code that makes it possible to hide files with specific extensions such as *.js and *.js.map?
Upvotes: 3
Views: 3332
Reputation: 1054
In your workspace settings (File -> Preferences -> Settings -> Workspace tab):
{
"files.exclude": {
"**/*.js": true,
"**/*.js.map": true
}
}
...depending on where your files are in the folder structure of course.
Upvotes: 4