TypeScript/.vscode/tasks.json

45 lines
1.1 KiB
JSON
Raw Normal View History

{
2017-11-22 04:47:13 +01:00
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
2015-05-19 19:56:46 +02:00
"tasks": [
{
"type": "gulp",
2017-11-22 04:47:13 +01:00
"label": "gulp: local",
"task": "local",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [
"$tsc"
]
2017-08-05 01:10:33 +02:00
},
{
"type": "gulp",
2017-11-22 04:47:13 +01:00
"label": "gulp: tsc",
"task": "tsc",
2017-11-22 04:47:13 +01:00
"group": "build",
"problemMatcher": [
"$tsc"
]
2017-11-22 04:47:13 +01:00
},
{
"type": "gulp",
2017-11-22 04:47:13 +01:00
"label": "gulp: tests",
"task": "tests",
2017-11-22 04:47:13 +01:00
"group": "build",
"problemMatcher": [
"$tsc"
]
},
{
"type": "gulp",
"task": "services",
"label": "gulp: services",
"problemMatcher": [
"$tsc"
],
2015-05-19 19:56:46 +02:00
}
]
}