VSCode: Reduce file watcher resource usage

This commit is contained in:
WillyJL
2025-10-06 21:57:30 +02:00
parent 85b6b2b896
commit 9001aaa4ae

View File

@@ -19,5 +19,13 @@
"--compile-commands-dir=${workspaceFolder}/build/latest",
"--clang-tidy",
"--header-insertion=never"
]
],
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/**/modules/**/objects/**": true,
"**/.git/**/subtree-cache/**": true,
"**/.git/**/rr-cache/**": true,
"build/**": true,
"toolchain/**": true
}
}