Add vscode tasks.

This commit is contained in:
Quentin Decaunes 2019-02-27 23:00:55 +01:00
parent 8879ecf0dd
commit 43fed585ab

17
.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,17 @@
{
// 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",
"problemMatcher": []
},
{
"type": "npm",
"script": "build",
"problemMatcher": []
}
]
}