Initial Commit

This commit is contained in:
2018-12-25 07:55:07 -08:00
commit 0bb1bab900
8 changed files with 4346 additions and 0 deletions

13
tsconfig.json Normal file
View File

@@ -0,0 +1,13 @@
{
"compilerOptions": {
"outDir": "./dist/",
"sourceMap": true,
"strictNullChecks": true,
"target": "es6",
"jsx": "react",
"module": "commonjs"
},
"include": [
"./src/**/*"
]
}