fix: exclude some folder from watch

This commit is contained in:
Laurent FAINSIN 2023-04-13 09:58:20 +02:00
parent ce88fc9f88
commit f83bd2b61f

View file

@ -25,5 +25,13 @@
"**/Thumbs.db": true, // defaults
"**/__pycache__": true, // annoying
"**/.mypy_cache": true, // annoying
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/*/**": true,
"**/.hg/store/**": true,
"**/output/**": true,
"**/ShapeNetCore.v2.PC15k/**": true,
}
}