Initial commit with typescript

This commit is contained in:
watsonb8
2019-06-11 13:32:22 -04:00
commit d7fc6eba5d
6 changed files with 357 additions and 0 deletions

16
tsconfig.json Normal file
View File

@@ -0,0 +1,16 @@
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"declaration": true,
"outDir": "./bin",
"strict": true,
},
"include": [
"src"
],
"exclude": [
"node_modules",
"**/__tests__/*"
]
}