Adopt tasks.json to new schema

This commit is contained in:
Dirk Baeumer 2017-06-27 21:44:31 +02:00
parent 19f310a027
commit 29bb20ce0e

17
.vscode/tasks.json vendored
View file

@ -2,11 +2,12 @@
"version": "2.0.0",
"tasks": [
{
"customize": "vscode.npm.run watch",
"taskName": "Build VS Code",
"type": "npm",
"script": "watch",
"label": "Build VS Code",
"group": "build",
"isBackground": true,
"terminal": {
"presentation": {
"reveal": "never"
},
"problemMatcher": {
@ -28,8 +29,9 @@
}
},
{
"customize": "gulp.tslint",
"taskName": "Run tslint",
"type": "gulp",
"task": "tslint",
"label": "Run tslint",
"problemMatcher": ["$tslint4"]
},
{
@ -54,8 +56,9 @@
}
},
{
"customize": "gulp.electron",
"taskName": "Download electron"
"type": "gulp",
"task": "electron",
"label": "Download electron"
}
]
}