mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-17 13:55:08 +00:00
chore(vscode): exclude build artifacts and deps from file watcher
This commit is contained in:
parent
1aa7f670ad
commit
91308ce43d
1 changed files with 17 additions and 1 deletions
|
|
@ -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
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue