evitar consumo de cpu por vscode
agregar estas configuraciones a tu archivo settings.json de VS Code (Ctrl + Shift + P > Preferences: Open User Settings (JSON)) para evitar que indexe carpetas innecesarias:
{
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/*/**": true,
"**/target/**": true,
"**/build/**": true
},
"search.exclude": {
"**/node_modules": true,
"**/target": true,
"**/build": true
}
}
Comentarios
Publicar un comentario