initial commit

This commit is contained in:
Bryan MacFarlane
2020-01-09 18:32:59 -05:00
commit 0fc3b75a6d
15 changed files with 6163 additions and 0 deletions

15
tsconfig.json Normal file
View File

@@ -0,0 +1,15 @@
{
"compilerOptions": {
"target": "es2015",
"module": "commonjs",
"moduleResolution": "node",
"typeRoots": [ "node_modules/@types" ],
"declaration": true,
"outDir": "_out",
"forceConsistentCasingInFileNames": true
},
"files": [
"index.ts",
"auth.ts"
]
}