From 7c96cf4fed6a14c9f21732be0997eabfad15c992 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Jun 2026 13:54:26 +0000 Subject: [PATCH 1/4] build(deps-dev): bump typescript from 5.9.3 to 6.0.3 Bumps [typescript](https://github.com/microsoft/TypeScript) from 5.9.3 to 6.0.3. - [Release notes](https://github.com/microsoft/TypeScript/releases) - [Commits](https://github.com/microsoft/TypeScript/compare/v5.9.3...v6.0.3) --- updated-dependencies: - dependency-name: typescript dependency-version: 6.0.3 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index e8d61b1..8b17432 100644 --- a/package.json +++ b/package.json @@ -39,7 +39,7 @@ "nock": "^14.0.1", "semantic-release": "^25.0.2", "ts-jest": "^29.4.4", - "typescript": "^5.8.2" + "typescript": "^6.0.3" }, "files": [ "dist/*", From f7006bb85a38b648e3108e4f8983f25e3a5ae200 Mon Sep 17 00:00:00 2001 From: kobenguyent <7845001+kobenguyent@users.noreply.github.com> Date: Mon, 8 Jun 2026 16:51:41 +0200 Subject: [PATCH 2/4] Update tsconfig.json --- tsconfig.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index c30bee3..7b01b3f 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -11,7 +11,9 @@ "types": ["jest", "node"], "declaration": true, "outDir": "./dist", - "baseUrl": "./src", + "paths": { + "*": ["./src/*"] + }, "skipLibCheck": true }, "exclude": ["node_modules", From 84c40a4589f762d98c4cecebcfcec1fd1893af29 Mon Sep 17 00:00:00 2001 From: kobenguyent <7845001+kobenguyent@users.noreply.github.com> Date: Mon, 8 Jun 2026 16:58:07 +0200 Subject: [PATCH 3/4] Update tsconfig.json --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index 7b01b3f..a29dee9 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -8,6 +8,7 @@ "esModuleInterop": true, "module": "commonjs", "strictNullChecks": false, + "noImplicitAny": false, "types": ["jest", "node"], "declaration": true, "outDir": "./dist", From 82f686f16a969347b613ad84e59d5a487dca16f1 Mon Sep 17 00:00:00 2001 From: kobenguyent <7845001+kobenguyent@users.noreply.github.com> Date: Mon, 8 Jun 2026 17:01:53 +0200 Subject: [PATCH 4/4] Update tsconfig.json --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index a29dee9..50ee497 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -8,6 +8,7 @@ "esModuleInterop": true, "module": "commonjs", "strictNullChecks": false, + "strict": false, "noImplicitAny": false, "types": ["jest", "node"], "declaration": true,