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

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

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