From 336b45a64597ad756ae95893a15be8b317538254 Mon Sep 17 00:00:00 2001 From: Daniel Imms <2193314+Tyriar@users.noreply.github.com> Date: Fri, 25 Feb 2022 11:24:40 -0800 Subject: [PATCH] Make vscode tasks faster on reload See microsoft/vscode#142413 --- .vscode/tasks.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 4673ba79..f5207541 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -18,6 +18,7 @@ "problemMatcher": [] }, { + "label": "npm: watch", "type": "npm", "script": "watch", "group": "build", @@ -28,6 +29,7 @@ } }, { + "label": "npm: start", "type": "npm", "script": "start", "dependsOn": "npm: watch",