Files
vscode-extension-samples/multi-lsp-sample/server/.vscode/tasks.json
2017-08-23 16:40:19 +02:00

17 lines
220 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "watch",
"isBackground": true,
"problemMatcher": [
"$tsc-watch"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}