Recently, I made changes to my files.exclude user settings in Visual Studio Code to hide .js and .map files, which were working fine yesterday. However, today, without restarting or closing the application, it suddenly stopped working.
Here is the complete settings.json file:
// Customize your settings in this file to override default configurations
{
"files.exclude": {
"app/*.js": true,
"app/*.map": true
}
}
Any ideas on how to resolve this issue?