Add VS Code tasks

This commit is contained in:
Phillip Kühne 2020-03-25 18:02:09 +01:00
parent 9317563047
commit e78e9da24c

View File

@ -0,0 +1,19 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "start",
"group": "build",
"problemMatcher": []
},
{
"type": "npm",
"script": "build",
"group": "build",
"problemMatcher": []
}
]
}