From 91308ce43d2d469362b47b2158b0faac8f0176b4 Mon Sep 17 00:00:00 2001 From: Daniel Radl Date: Fri, 10 Apr 2026 16:51:19 +0200 Subject: [PATCH] chore(vscode): exclude build artifacts and deps from file watcher --- development/vscode-example/settings.json | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) 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 + } }