My software project has a huge build folder and that makes my processor being at 100% all the time. I came across several settings that can be made at it solved my problem with the CPU. This is my .vscode/settings file:
{
"files.watcherExclude": {
"**/build/**": true
},
"files.exclude": {
"**/build/**": true
},
"search.exclude": {
"**/build/**": true
}
}
I have now to add about ten more exclude paths. Is the any way to simplifiy the settings so that I don’t have to paste the ten paths for every *.exclude property?