chore(vscode): exclude build artifacts and deps from file watcher

This commit is contained in:
Daniel Radl 2026-04-10 16:51:19 +02:00
parent 1aa7f670ad
commit 91308ce43d

View file

@ -1,3 +1,19 @@
{ {
"python.defaultInterpreterPath": "${workspaceFolder}/frappe-bench/env/bin/python" "python.defaultInterpreterPath": "${workspaceFolder}/frappe-bench/env/bin/python",
"files.watcherExclude": {
// --- Node modules ---
"**/node_modules/**": true,
// --- Frappe bench core dirs ---
"**/env/**": true,
"**/config/**": true,
// --- Build artifacts ---
"**/__pycache__/**": true,
"**/*.pyc": true
},
"files.exclude": {
"**/__pycache__": true,
"**/*.pyc": true
}
} }