Initial Commit

This commit is contained in:
Samuel Attard
2020-10-20 17:21:38 -07:00
commit 163f495b6b
9 changed files with 5363 additions and 0 deletions

21
tsconfig.json Normal file
View File

@@ -0,0 +1,21 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "es2017",
"lib": [
"es2017"
],
"sourceMap": true,
"strict": true,
"outDir": "dist/cjs",
"types": [
"node",
],
"allowSyntheticDefaultImports": true,
"moduleResolution": "node",
"declaration": true
},
"include": [
"src"
]
}