huge typescript fixes, remove Object.assign usage

This commit is contained in:
Anton Lavrenov
2019-03-10 10:31:13 -05:00
parent 0844831638
commit e150791f97
36 changed files with 520 additions and 73 deletions

View File

@@ -21,8 +21,8 @@
"prettier": "prettier --write \"src/**/*.js\" \"test/**/*.js\" --single-quote",
"tsc": "tsc -d --declarationDir ./types --removeComments --module CommonJS || echo \"tsc faild for some file(s).\"",
"rollup": "rollup -c",
"clean": "rm -rf ./lib",
"compile": "npm run clean && npm run tsc && npm run rollup",
"clean": "rm -rf ./lib && rm -rf ./types",
"compile": "npm run clean && npm run tsc && cp ./src/index-types.d.ts ./types && npm run rollup",
"watch": "rollup -c -w"
},
"devDependencies": {