FreeTube/.vscode/tasks.json

19 lines
372 B
JSON
Raw Normal View History

2020-03-24 15:34:27 +01:00
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "dev",
"problemMatcher": []
2020-06-23 17:47:19 +02:00
},
{
"type": "npm",
"script": "dev-runner",
"problemMatcher": [],
"label": "npm: dev-runner",
"detail": "node _scripts/dev-runner.js"
2020-03-24 15:34:27 +01:00
}
]
}