From 28db0bf2f56ceae0209a165d6bbbbc6bcb3ed679 Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Wed, 26 Jul 2017 23:25:32 -0400 Subject: [PATCH] Updates to v2.0 task schema --- .vscode/tasks.json | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 669e6ca..984bb25 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -9,13 +9,18 @@ // A task runner that calls a custom npm script that compiles the extension. { "version": "2.0.0", - "showOutput": "silent", + "presentation": { + "echo": true, + "reveal": "always", + "focus": false, + "panel": "shared" + }, "tasks": [ { - "taskName": "compile", - "command": "npm run compile --silent", - "isBuildCommand": true, - "isShellCommand": true, + "label": "compile", + "type": "npm", + "script": "compile", + "group": "build", "problemMatcher": [ "$tsc", { @@ -25,19 +30,17 @@ ] }, { - "taskName": "lint", - "command": "npm run lint --silent", - "isShellCommand": true, + "type": "npm", + "script": "lint", "problemMatcher": { "base": "$tslint5", "fileLocation": "relative" } }, { - "taskName": "watch", - "command": "npm run watch --silent", + "type": "npm", + "script": "watch", "isBackground": true, - "isShellCommand": true, "problemMatcher": "$tsc-watch" } ]