From 1894d3ced31082c4d33937f380fc9e04cd7618e9 Mon Sep 17 00:00:00 2001 From: "cloudquery-ci[bot]" <271027272+cloudquery-ci[bot]@users.noreply.github.com> Date: Wed, 1 Apr 2026 03:25:54 +0000 Subject: [PATCH 1/2] chore(deps): Replace dependency @tsconfig/node20 with @tsconfig/node22 --- package.json | 2 +- pnpm-lock.yaml | 12 ++++++------ tsconfig.json | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/package.json b/package.json index 9089def..96bf12b 100644 --- a/package.json +++ b/package.json @@ -51,7 +51,7 @@ "author": "cloudquery (https://github.com/cloudquery)", "devDependencies": { "@ava/typescript": "^6.0.0", - "@tsconfig/node20": "^20.1.2", + "@tsconfig/node22": "^22.0.0", "@types/semver": "^7.5.8", "@types/uuid": "^11.0.0", "@types/yargs": "^17.0.24", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 6788b57..6be2080 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -78,9 +78,9 @@ importers: '@ava/typescript': specifier: ^6.0.0 version: 6.0.0 - '@tsconfig/node20': - specifier: ^20.1.2 - version: 20.1.9 + '@tsconfig/node22': + specifier: ^22.0.0 + version: 22.0.5 '@types/semver': specifier: ^7.5.8 version: 7.7.1 @@ -354,8 +354,8 @@ packages: '@tsconfig/node16@1.0.4': resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} - '@tsconfig/node20@20.1.9': - resolution: {integrity: sha512-IjlTv1RsvnPtUcjTqtVsZExKVq+KQx4g5pCP5tI7rAs6Xesl2qFwSz/tPDBC4JajkL/MlezBu3gPUwqRHl+RIg==} + '@tsconfig/node22@22.0.5': + resolution: {integrity: sha512-hLf2ld+sYN/BtOJjHUWOk568dvjFQkHnLNa6zce25GIH+vxKfvTgm3qpaH6ToF5tu/NN0IH66s+Bb5wElHrLcw==} '@tybys/wasm-util@0.10.1': resolution: {integrity: sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==} @@ -2846,7 +2846,7 @@ snapshots: '@tsconfig/node16@1.0.4': {} - '@tsconfig/node20@20.1.9': {} + '@tsconfig/node22@22.0.5': {} '@tybys/wasm-util@0.10.1': dependencies: diff --git a/tsconfig.json b/tsconfig.json index 6f107f0..d47a7a3 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,5 +1,5 @@ { - "extends": "@tsconfig/node20/tsconfig.json", + "extends": "@tsconfig/node22/tsconfig.json", "compilerOptions": { "allowJs": true, "declaration": true, From ffd846fc1c36cd8251988214fed6384cf5a17a4c Mon Sep 17 00:00:00 2001 From: erezrokah Date: Wed, 1 Apr 2026 15:15:09 +0100 Subject: [PATCH 2/2] fix: Override lib in tsconfig.json to fix eslint compatibility with @tsconfig/node22 --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index d47a7a3..15b8eec 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,7 @@ { "extends": "@tsconfig/node22/tsconfig.json", "compilerOptions": { + "lib": ["es2023"], "allowJs": true, "declaration": true, "outDir": "dist",