mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-17 21:55:09 +00:00
20 lines
450 B
JSON
20 lines
450 B
JSON
{
|
|
"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,
|
|
"**/.git": false
|
|
}
|
|
}
|