Skip to content

Commit db05d36

Browse files
committed
chore: vscode
1 parent b07d764 commit db05d36

File tree

1 file changed

+14
-9
lines changed

1 file changed

+14
-9
lines changed

.vscode/tasks.json

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,22 @@
11
{
22
// See http://go.microsoft.com/fwlink/?LinkId=733558
33
// for the documentation about the tasks.json format
4-
"version": "0.1.0",
4+
"version": "2.0.0",
55
"command": "grunt",
6-
"isShellCommand": true,
7-
"args": ["--no-color"],
8-
"showOutput": "always",
6+
"args": [
7+
"--no-color"
8+
],
9+
910
"tasks": [
1011
{
11-
"taskName": "build",
12-
"args": [],
13-
"isBuildCommand": true,
14-
"problemMatcher": ["$tsc", "$tslint4"]
15-
}
12+
"label": "build",
13+
"type": "grunt",
14+
"task": "--no-color",
15+
"problemMatcher": [
16+
"$tsc",
17+
"$tslint4"
18+
],
19+
"group": "build"
20+
}
1621
]
1722
}

0 commit comments

Comments
 (0)