script-graph/.vscode/tasks.json

32 lines
555 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "npm: build",
"type": "npm",
"script": "build",
"problemMatcher": []
},
{
"label": "npm: watch",
"type": "npm",
"script": "watch",
"problemMatcher": [],
"presentation": {
"panel": "shared",
"group": "test"
}
},
{
"label": "npm: serve",
"type": "npm",
"script": "serve",
"problemMatcher": [],
"presentation": {
"panel": "shared",
"group": "test"
}
}
]
}