From f27fba6f09c8dd5fe415f9786b6533320e6f9d03 Mon Sep 17 00:00:00 2001 From: Jamie Magee Date: Thu, 4 May 2023 20:49:06 -0700 Subject: [PATCH 1/2] chore(deps): remove explicit dependency on `tslib` --- package.json | 3 --- yarn.lock | 3 +-- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/package.json b/package.json index 34b8bff..6ab1667 100644 --- a/package.json +++ b/package.json @@ -34,9 +34,6 @@ "node": "^14.15.0 || ^16.13.0 || >= 18.12.0", "yarn": "^1.22.0" }, - "dependencies": { - "tslib": "^2.5.0" - }, "devDependencies": { "@renovate/eslint-plugin": "https://github.com/renovatebot/eslint-plugin#v0.0.5", "@types/jest": "29.5.1", diff --git a/yarn.lock b/yarn.lock index 222a73d..9a4e225 100644 --- a/yarn.lock +++ b/yarn.lock @@ -953,7 +953,6 @@ "@renovate/eslint-plugin@https://github.com/renovatebot/eslint-plugin#v0.0.5": version "0.0.5" - uid "1923e2e2776549cb25a2c6ea09915ee31bff6d05" resolved "https://github.com/renovatebot/eslint-plugin#1923e2e2776549cb25a2c6ea09915ee31bff6d05" "@semantic-release/commit-analyzer@^9.0.2": @@ -6410,7 +6409,7 @@ tslib@^1.8.1: resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== -tslib@^2.1.0, tslib@^2.5.0: +tslib@^2.1.0: version "2.5.0" resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.0.tgz#42bfed86f5787aeb41d031866c8f402429e0fddf" integrity sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg== From 8f42dd1f98bf160d50acb3bf6886aee423bc20d5 Mon Sep 17 00:00:00 2001 From: Jamie Magee Date: Thu, 4 May 2023 21:16:10 -0700 Subject: [PATCH 2/2] remove `importHelpers` config --- tsconfig.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 8fdf4e9..9931111 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -8,8 +8,7 @@ "outDir": "./dist", /* https://github.com/microsoft/TypeScript/wiki/Node-Target-Mapping */ "target": "ES2020", - "moduleResolution": "node", - "importHelpers": true + "moduleResolution": "node" }, "exclude": ["node_modules", "dist"] }