* Unit tests passing with code coverage reporting.

* ES5 compatible dist/blockstack.js bundle being generated and passing e2e tests.
This commit is contained in:
Matthew Little
2019-03-06 14:46:02 -05:00
parent 5af02733c7
commit c9ad6d2b37
8 changed files with 1558 additions and 103787 deletions

View File

@@ -1,16 +1,15 @@
{
"compilerOptions": {
"target": "es2018",
"module": "umd",
"esModuleInterop": true,
"module": "commonjs",
"moduleResolution": "node",
"esModuleInterop": true,
"declaration": true,
"noImplicitAny": false,
"outDir": "lib",
"sourceMap": true
},
"include": [
"src/**/*",
"tests/unitTests/src/**/*"
"src"
]
}