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)
This commit is contained in:
Fleny
2025-08-12 20:40:23 +02:00
committed by GitHub
parent 109a478a5b
commit 0f359e5013

1
.vscode/tasks.json vendored
View File

@@ -12,7 +12,6 @@
"panel": "dedicated" "panel": "dedicated"
}, },
"runOptions": { "runOptions": {
"runOn": "folderOpen",
"instanceLimit": 1 "instanceLimit": 1
}, },
"problemMatcher": [] "problemMatcher": []