add integration testing support

This commit is contained in:
kaen
2018-11-10 15:49:43 -08:00
parent 1bf84c2443
commit f8507b632a
10 changed files with 219 additions and 4 deletions

View File

@@ -0,0 +1,20 @@
{
"compilerOptions": {
"module": "esnext",
"lib": ["esnext"],
"target": "es5",
"moduleResolution": "Node",
"outDir": "dist",
"baseUrl": "src/",
"sourceMap": true,
"strict": true,
"experimentalDecorators": true,
"noImplicitReturns": true,
"noImplicitAny": false,
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": false
},
"exclude": [
"node_modules"
]
}