We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19f310a commit 29bb20cCopy full SHA for 29bb20c
1 file changed
.vscode/tasks.json
@@ -2,11 +2,12 @@
2
"version": "2.0.0",
3
"tasks": [
4
{
5
- "customize": "vscode.npm.run watch",
6
- "taskName": "Build VS Code",
+ "type": "npm",
+ "script": "watch",
7
+ "label": "Build VS Code",
8
"group": "build",
9
"isBackground": true,
- "terminal": {
10
+ "presentation": {
11
"reveal": "never"
12
},
13
"problemMatcher": {
@@ -28,8 +29,9 @@
28
29
}
30
31
- "customize": "gulp.tslint",
32
- "taskName": "Run tslint",
+ "type": "gulp",
33
+ "task": "tslint",
34
+ "label": "Run tslint",
35
"problemMatcher": ["$tslint4"]
36
37
@@ -54,8 +56,9 @@
54
56
55
57
58
- "customize": "gulp.electron",
- "taskName": "Download electron"
59
60
+ "task": "electron",
61
+ "label": "Download electron"
62
63
]
64
0 commit comments