Build starter.

This commit is contained in:
Pierre THIERRY
2020-09-05 13:01:05 +02:00
committed by takiguchi
parent e794e65942
commit 94226c140e
22 changed files with 987 additions and 100 deletions

19
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,19 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch Program with debugger",
"type": "node",
"request": "launch",
"cwd": "${workspaceFolder}",
"runtimeExecutable": "npm",
"runtimeArgs": [
"start"
],
"port": 5858
}
]
}