Initial commit

This commit is contained in:
2018-04-19 18:52:59 -04:00
commit 278329c5bd
23 changed files with 6475 additions and 0 deletions

24
tsconfig.json Normal file
View File

@@ -0,0 +1,24 @@
{
"compilerOptions": {
"module": "es2015",
"moduleResolution": "node",
"target": "es5",
"noImplicitAny": true,
"strictNullChecks": false,
"rootDir": ".",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"suppressImplicitAnyIndexErrors": true,
"lib": [
"dom",
"es5",
"es2015.promise",
"es2015.iterable"
]
},
"exclude": [
"node_modules"
]
}