road to es5

This commit is contained in:
Aleksandra Usacheva 2019-11-29 15:36:07 +03:00
parent 862b6a4128
commit 7019e75ddc
No known key found for this signature in database
GPG Key ID: A749C17B07D29A0E
3 changed files with 5 additions and 5 deletions

3
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "@rbkmoney/partial-fetcher",
"version": "1.0.0",
"version": "1.0.3",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
@ -471,6 +471,7 @@
"version": "6.5.3",
"resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.5.3.tgz",
"integrity": "sha512-wuYsAYYFdWTAnAaPoKGNhfpWwKZbJW+HgAJ+mImp+Epl7BG8oNWBCTyRM8gba9k4lk8BgWdoYm21Mo/RYhhbgA==",
"optional": true,
"requires": {
"tslib": "^1.9.0"
}

View File

@ -1,9 +1,8 @@
{
"name": "@rbkmoney/partial-fetcher",
"version": "1.0.2",
"version": "1.0.3",
"description": "An library for fetching data from endpoints that uses continuationToken.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
@ -36,7 +35,7 @@
"typescript": "^3.7.2",
"typescript-tslint-plugin": "^0.5.5"
},
"dependencies": {
"optionalDependencies": {
"rxjs": "^6.5.3"
}
}

View File

@ -11,7 +11,7 @@
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"target": "es5",
"typeRoots": ["node_modules/@types"],
"lib": ["es2018", "dom"],
"allowSyntheticDefaultImports": true,