Initial commit

This commit is contained in:
Daniel Scalzi
2019-07-28 13:55:51 -04:00
commit 68e09fbac7
9 changed files with 817 additions and 0 deletions

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

@@ -0,0 +1,18 @@
{
// 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": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceFolder}\\dist\\index.js",
"preLaunchTask": "compile",
"outFiles": [
"${workspaceFolder}/dist/**/*.js"
]
}
]
}