Merge pull request #1866 from AMR-Mannesmann/chore/vscode-watcher-exclude

chore(vscode): exclude build artifacts and deps from file watcher
This commit is contained in:
Daniel Radl 2026-04-10 17:33:34 +02:00 committed by GitHub
commit 9d566ecc3d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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
}
}