Files
vscode-extension-samples/task-provider-sample/.vscode/tasks.json

15 lines
268 B
JSON
Raw Permalink Normal View History

2017-07-05 17:21:28 +02:00
{
// 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"
]
}
]
}