Files
vscode-extension-samples/fsprovider-sample/.vscode/tasks.json
Johannes Rieken 05605fd033 renames
2018-04-13 15:49:28 +02:00

17 lines
390 B
JSON

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