Is there a setting in Visual Studio Code that makes it possible to hide files with specific extensions such as *.js and *.js.map?
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With