Skip to content

Instantly share code, notes, and snippets.

@jakub-g
Last active November 3, 2020 18:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jakub-g/3aa92d146fda1fdba2958a2c2db05d08 to your computer and use it in GitHub Desktop.
Save jakub-g/3aa92d146fda1fdba2958a2c2db05d08 to your computer and use it in GitHub Desktop.
.vscode/settings.json to ignore derived folders in vscode which make it dog slow when huge
{
"files.exclude": {
".app-cache/**": true,
".npm/**": true,
".npm-tmp/**": true,
"dist*/**": true,
"node_modules/**": true,
"tools/**/node_modules/**": true,
"subproject/node_modules/**": true,
},
"files.watcherExclude": {
".app-cache/**": true,
".npm/**": true,
".npm-tmp/**": true,
"dist*/**": true,
"node_modules/**": true,
"tools/**/node_modules/**": true,
"subproject/node_modules/**": true,
},
"search.exclude": {
".app-cache/**": true,
".npm/**": true,
".npm-tmp/**": true,
"dist*/**": true,
"node_modules/**": true,
"tools/**/node_modules/**": true,
"subproject/node_modules/**": true,
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment