From 0f359e50130353f0cf1558aa9e7a7e23bbea2f77 Mon Sep 17 00:00:00 2001 From: Fleny Date: Tue, 12 Aug 2025 20:40:23 +0200 Subject: [PATCH] chore: Disable runOn folderOpen for turbo watch vscode task (#4316) The task currently opens up as soon as visual studio code opens the folder and it is very much annoying since it pops up immediately and also for example for me it makes my pc lag quite a bit due to the amount of files being watched and git processes that it spawns to calculate the hashes (this is at least my understanding of what it is doing with all the git processes) --- .vscode/tasks.json | 1 - 1 file changed, 1 deletion(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 361a10238..c8732dae6 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -12,7 +12,6 @@ "panel": "dedicated" }, "runOptions": { - "runOn": "folderOpen", "instanceLimit": 1 }, "problemMatcher": []