Skip to content

Commit 0d8e0e0

Browse files
committed
default build and test tasks
1 parent cdb9975 commit 0d8e0e0

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

.vscode/tasks.json

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,10 @@
2727
// use the standard tsc in watch mode problem matcher to find compile problems in the output.
2828
"problemMatcher": "$tsc-watch",
2929
// that's our build
30-
"group": "build"
30+
"group":{
31+
"kind": "build",
32+
"isDefault": true
33+
}
3134
},
3235
{
3336
"label": "npm:lint",
@@ -53,7 +56,10 @@
5356
"detail": "Run Project Tests",
5457
"type": "shell",
5558
"command": "npm",
56-
"group": "test",
59+
"group": {
60+
"kind": "test",
61+
"isDefault": true
62+
},
5763
"args": ["test"]
5864
},
5965
{

0 commit comments

Comments
 (0)