From eb82cd3f4be40b760c08dfac5256a2f908c46435 Mon Sep 17 00:00:00 2001 From: Anthony Dresser Date: Fri, 17 Jul 2020 13:03:49 -0700 Subject: [PATCH] fix tasks for building (#11412) --- .vscode/tasks.json | 30 ++++++++++++++++++++---------- 1 file changed, 20 insertions(+), 10 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 42d0ba0f26..21c38ac822 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -66,22 +66,18 @@ }, { "type": "npm", - "script": "strict-vscode-watch", - "label": "TS - Strict VSCode", - "isBackground": true, + "script": "kill-watch-clientd", + "label": "Kill Build VS Code Core", + "group": "build", "presentation": { "reveal": "never" }, - "problemMatcher": { - "base": "$tsc-watch", - "owner": "typescript-vscode", - "applyTo": "allDocuments" - } + "problemMatcher": "$tsc" }, { "type": "npm", - "script": "kill-watchd", - "label": "Kill Build VS Code", + "script": "kill-watch-extensionsd", + "label": "Kill Build VS Code Extensions", "group": "build", "presentation": { "reveal": "never" @@ -96,6 +92,20 @@ ], "group": "build" }, + { + "type": "npm", + "script": "strict-vscode-watch", + "label": "TS - Strict VSCode", + "isBackground": true, + "presentation": { + "reveal": "never" + }, + "problemMatcher": { + "base": "$tsc-watch", + "owner": "typescript-vscode", + "applyTo": "allDocuments" + } + }, { "type": "npm", "script": "watch-webd",