This commit is contained in:
Chuck Lantz
2019-04-17 20:52:55 -07:00
parent 63f41cf155
commit 74d2279f2d
10 changed files with 59 additions and 380 deletions

4
.vscode/launch.json vendored
View File

@@ -8,9 +8,7 @@
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceFolder}/out/server.js",
"cwd": "${workspaceFolder}",
"preLaunchTask": "compile"
"program": "${workspaceFolder}/server.js"
}
]
}

14
.vscode/tasks.json vendored
View File

@@ -1,14 +0,0 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "compile",
"type": "shell",
"command": "npm run compile",
"problemMatcher": "$tsc"
}
]
}