Skip to content
This repository was archived by the owner on Oct 16, 2020. It is now read-only.

Commit a44530e

Browse files
committed
chore(tasks): update tasks.json
1 parent 0d0a108 commit a44530e

File tree

1 file changed

+22
-28
lines changed

1 file changed

+22
-28
lines changed

.vscode/tasks.json

+22-28
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,33 @@
11
{
2-
"version": "0.1.0",
3-
"isShellCommand": true,
4-
"command": "npm",
5-
"args": ["--silent", "run"],
6-
"options": {
7-
"cwd": "${workspaceRoot}"
8-
},
2+
"version": "2.0.0",
93
"tasks": [
104
{
11-
"taskName": "build",
12-
"isBuildCommand": true,
13-
"problemMatcher": "$tsc"
5+
"type": "npm",
6+
"script": "build",
7+
"group": {
8+
"kind": "build",
9+
"isDefault": true
10+
},
11+
"problemMatcher": [
12+
"$tsc"
13+
]
1414
},
1515
{
16-
"taskName": "watch",
16+
"type": "npm",
17+
"script": "watch",
18+
"group": "build",
1719
"isBackground": true,
18-
"problemMatcher": "$tsc-watch"
20+
"problemMatcher": [
21+
"$tsc-watch"
22+
]
1923
},
2024
{
21-
"taskName": "clean"
22-
},
23-
{
24-
"taskName": "lint",
25-
"problemMatcher": {
26-
"pattern": {
27-
"regexp": "^(.+)\\((\\d+),(\\d+)\\): (\\w+) (.+)$",
28-
"file": 1,
29-
"line": 2,
30-
"column": 3,
31-
"severity": 4,
32-
"message": 5
33-
},
34-
"owner": "tslint",
35-
"fileLocation": ["relative", "${workspaceRoot}"]
36-
}
25+
"type": "npm",
26+
"script": "lint",
27+
"group": "test",
28+
"problemMatcher": [
29+
"$tslint5"
30+
]
3731
}
3832
]
3933
}

0 commit comments

Comments
 (0)