We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cdb9975 commit 0d8e0e0Copy full SHA for 0d8e0e0
1 file changed
.vscode/tasks.json
@@ -27,7 +27,10 @@
27
// use the standard tsc in watch mode problem matcher to find compile problems in the output.
28
"problemMatcher": "$tsc-watch",
29
// that's our build
30
- "group": "build"
+ "group":{
31
+ "kind": "build",
32
+ "isDefault": true
33
+ }
34
},
35
{
36
"label": "npm:lint",
@@ -53,7 +56,10 @@
53
56
"detail": "Run Project Tests",
54
57
"type": "shell",
55
58
"command": "npm",
- "group": "test",
59
+ "group": {
60
+ "kind": "test",
61
62
+ },
63
"args": ["test"]
64
65
0 commit comments