Skip to content

Commit 3bf8583

Browse files
committed
Upgrade vscode tasks
1 parent 7083cc5 commit 3bf8583

File tree

1 file changed

+26
-25
lines changed

1 file changed

+26
-25
lines changed

.vscode/tasks.json

Lines changed: 26 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,28 @@
11
{
2-
// See http://go.microsoft.com/fwlink/?LinkId=733558
3-
// for the documentation about the tasks.json format
4-
"version": "0.1.0",
5-
"command": "npm",
6-
"isShellCommand": true,
7-
"showOutput": "always",
8-
"suppressTaskName": true,
9-
"tasks": [
10-
{
11-
"taskName": "install",
12-
"args": ["install"]
13-
},
14-
{
15-
"taskName": "start",
16-
"args": ["run", "start"]
17-
},
18-
{
19-
"taskName": "build",
20-
"args": ["run", "build", "-s"]
21-
},
22-
{
23-
"taskName": "test",
24-
"args": ["run", "test", "-s"]
25-
}
26-
]
2+
// See https://go.microsoft.com/fwlink/?LinkId=733558
3+
// for the documentation about the tasks.json format
4+
"version": "2.0.0",
5+
"tasks": [
6+
{
7+
"type": "npm",
8+
"script": "build",
9+
"group": {
10+
"kind": "build",
11+
"isDefault": true
12+
}
13+
},
14+
{
15+
"type": "npm",
16+
"script": "test",
17+
"group": {
18+
"kind": "test",
19+
"isDefault": true
20+
}
21+
},
22+
{
23+
"type": "npm",
24+
"script": "start",
25+
"problemMatcher": []
26+
}
27+
]
2728
}

0 commit comments

Comments
 (0)