vscode-vsce/.vscode/tasks.json
2020-06-10 11:23:56 +02:00

23 lines
No EOL
377 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"
],
"group": {
"kind": "build",
"isDefault": true
},
"isBackground": true
},
{
"type": "npm",
"script": "test"
}
]
}