Skip to content

Commit a014b8f

Browse files
committed
Makes compile the default build task
1 parent 4360c86 commit a014b8f

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.vscode/tasks.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,23 @@
2020
"label": "compile",
2121
"type": "npm",
2222
"script": "compile",
23-
"group": "build",
2423
"problemMatcher": [
2524
"$tsc",
2625
"$tslint5"
27-
]
26+
],
27+
"group": {
28+
"kind": "build",
29+
"isDefault": true
30+
}
2831
},
2932
{
3033
"label": "lint",
3134
"type": "npm",
3235
"script": "lint",
3336
"problemMatcher": [
3437
"$tslint5"
35-
]
38+
],
39+
"group": "build"
3640
},
3741
{
3842
"type": "npm",

0 commit comments

Comments
 (0)