Skip to content

Instantly share code, notes, and snippets.

@andypotts
Created September 12, 2017 15:21
Show Gist options
  • Save andypotts/78546d9362abf06d6dbd46d941b91e6b to your computer and use it in GitHub Desktop.
Save andypotts/78546d9362abf06d6dbd46d941b91e6b to your computer and use it in GitHub Desktop.
If VS Code is running at ~100% CPU, add this to the settings and close/reopen Code.

If VS Code is running at ~100% CPU, add this to the settings and close/reopen Code.

"files.exclude": {  
    "**/.git": true,  
    "**/.svn": true,  
    "**/.hg": true,  
    "**/CVS": true,  
    "**/.DS_Store": true,  
    "**/tmp": true,  
    "**/node_modules": true,  
    "**/bower_components": true,  
    "**/dist": true  
},  
"files.watcherExclude": {  
    "**/.git/objects/**": true,  
    "**/.git/subtree-cache/**": true,  
    "**/node_modules/**": true,  
    "**/tmp/**": true,  
    "**/bower_components/**": true,  
    "**/dist/**": true  
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment