From a014b8fd49279fda306e9e806a32790ad5bf665e Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Thu, 12 Oct 2017 21:59:09 -0400 Subject: [PATCH] Makes compile the default build task --- .vscode/tasks.json | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index eae239f..9fd29b7 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -20,11 +20,14 @@ "label": "compile", "type": "npm", "script": "compile", - "group": "build", "problemMatcher": [ "$tsc", "$tslint5" - ] + ], + "group": { + "kind": "build", + "isDefault": true + } }, { "label": "lint", @@ -32,7 +35,8 @@ "script": "lint", "problemMatcher": [ "$tslint5" - ] + ], + "group": "build" }, { "type": "npm",