Files
vscode-extension-samples/task-provider-sample/.vscode/tasks.json
2017-07-05 17:21:28 +02:00

15 lines
268 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "compile",
"isBackground": true,
"problemMatcher": [
"$tsc-watch"
]
}
]
}