Files
vscode-extension-samples/fsprovider-sample/.vscode/tasks.json
Johannes Rieken 2c4f99957b tweaks
2018-11-16 12:46:26 +01:00

16 lines
351 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": "watch",
"problemMatcher": [
"$tsc-watch"
],
"isBackground": true
}
]
}