This commit is contained in:
Peter Jaszkowiak 2017-06-25 15:15:30 -06:00
parent 3094180be6
commit 23039bf983
12 changed files with 839 additions and 0 deletions

19
tsconfig.json Normal file
View file

@ -0,0 +1,19 @@
{
"include": [
"lib/**/*.ts",
"typings"
],
"compilerOptions": {
"outDir": "build/lib",
"lib": ["es2015"],
"target": "es2015",
"module": "commonjs",
"moduleResolution": "node",
"noImplicitAny": true,
"alwaysStrict": true,
"sourceMap": true
},
"typeAcquisition": {
"enable": false
}
}