TypeScript/.vscode/tasks.json

34 lines
991 B
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": [
{
2017-11-22 04:47:13 +01:00
"type": "shell",
"identifier": "local",
"label": "gulp: local",
"command": "gulp",
"args": ["local"],
"group": { "kind": "build", "isDefault": true },
"problemMatcher": ["$gulp-tsc"]
2017-08-05 01:10:33 +02:00
},
{
2017-11-22 04:47:13 +01:00
"type": "shell",
"identifier": "tsc",
"label": "gulp: tsc",
"command": "gulp",
"args": ["tsc"],
"group": "build",
"problemMatcher": ["$gulp-tsc"]
},
{
"type": "shell",
"identifier": "tests",
"label": "gulp: tests",
"command": "gulp",
"args": ["tests"],
"group": "build",
"problemMatcher": ["$gulp-tsc"]
2015-05-19 19:56:46 +02:00
}
]
}