diff --git a/development/vscode-example/settings.json b/development/vscode-example/settings.json index 1490b727..e89d2005 100644 --- a/development/vscode-example/settings.json +++ b/development/vscode-example/settings.json @@ -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 + } }