We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b07d764 commit db05d36Copy full SHA for db05d36
.vscode/tasks.json
@@ -1,17 +1,22 @@
1
{
2
// See http://go.microsoft.com/fwlink/?LinkId=733558
3
// for the documentation about the tasks.json format
4
- "version": "0.1.0",
+ "version": "2.0.0",
5
"command": "grunt",
6
- "isShellCommand": true,
7
- "args": ["--no-color"],
8
- "showOutput": "always",
+ "args": [
+ "--no-color"
+ ],
9
+
10
"tasks": [
11
- "taskName": "build",
12
- "args": [],
13
- "isBuildCommand": true,
14
- "problemMatcher": ["$tsc", "$tslint4"]
15
- }
+ "label": "build",
+ "type": "grunt",
+ "task": "--no-color",
+ "problemMatcher": [
16
+ "$tsc",
17
+ "$tslint4"
18
19
+ "group": "build"
20
+ }
21
]
22
}
0 commit comments