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

Entradas populares de este blog

crear un properties local + implementar actuator/health

instalar maven

subir un proyecto local a un repositorio de github