From 28db9515c71b89efd35077d45990e0e6a30cd650 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 24 Mar 2026 11:08:28 +0000 Subject: [PATCH 1/2] chore(deps-dev): bump typescript from 5.9.3 to 6.0.2 Bumps [typescript](https://github.com/microsoft/TypeScript) from 5.9.3 to 6.0.2. - [Release notes](https://github.com/microsoft/TypeScript/releases) - [Commits](https://github.com/microsoft/TypeScript/compare/v5.9.3...v6.0.2) --- updated-dependencies: - dependency-name: typescript dependency-version: 6.0.2 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 2781c7c..b6d446b 100644 --- a/package.json +++ b/package.json @@ -73,6 +73,6 @@ "prettier": "^3.0.0", "semantic-release": "^25.0.2", "ts-node": "^10.9.1", - "typescript": "^5.4.3" + "typescript": "^6.0.2" } } From 8f35084d891f0f5e270ed1733475958f833da5ae Mon Sep 17 00:00:00 2001 From: Mykola Mokhnach Date: Fri, 10 Apr 2026 12:51:52 +0200 Subject: [PATCH 2/2] fix build --- tsconfig.json | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 499781d..bea76f8 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,8 +5,13 @@ "outDir": "build", "checkJs": true, "esModuleInterop": true, - "types": ["node", "mocha"], - "strict": true + "types": ["node", "mocha"] + }, + "ts-node": { + "transpileOnly": true, + "compilerOptions": { + "rootDir": "." + } }, "include": ["lib", "test"] }