Add VSCode configuration for debugging purposes (#886)

This commit is contained in:
Yuya Ochiai
2019-03-12 05:45:32 +09:00
committed by William Gathoye
parent c4cf9d5e0c
commit 427403aa47
3 changed files with 82 additions and 0 deletions

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

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