From 0c4c45c2dcea7ead9d8ab39b4d239f61e970d3b3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 12 Apr 2026 23:19:14 +0000 Subject: [PATCH 1/3] chore(deps)(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-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index 6c40450..617393b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -29,7 +29,7 @@ "prettier": "^3.8.1", "ts-jest": "^29.4.6", "tsup": "^8.5.1", - "typescript": "^5.9.3", + "typescript": "^6.0.2", "typescript-eslint": "^8.54.0" }, "engines": { @@ -10759,9 +10759,9 @@ } }, "node_modules/typescript": { - "version": "5.9.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", - "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-6.0.2.tgz", + "integrity": "sha512-bGdAIrZ0wiGDo5l8c++HWtbaNCWTS4UTv7RaTH/ThVIgjkveJt83m74bBHMJkuCbslY8ixgLBVZJIOiQlQTjfQ==", "dev": true, "license": "Apache-2.0", "bin": { diff --git a/package.json b/package.json index ec49884..b06ea51 100644 --- a/package.json +++ b/package.json @@ -173,7 +173,7 @@ "prettier": "^3.8.1", "ts-jest": "^29.4.6", "tsup": "^8.5.1", - "typescript": "^5.9.3", + "typescript": "^6.0.2", "typescript-eslint": "^8.54.0" }, "engines": { From 4c969fc64c9bbeeb39f8a394c086f93b0e967f9b Mon Sep 17 00:00:00 2001 From: Miguel Colmenares Date: Sun, 12 Apr 2026 22:38:49 -0500 Subject: [PATCH 2/3] fix: Remove deprecated baseUrl option for TypeScript 6.0 compatibility Remove unused baseUrl and paths from tsconfig.json. The @/ alias was only referenced in template documentation, not in source code. TypeScript 6.0 deprecates baseUrl (TS5101). --- tsconfig.json | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index b6fdb9a..0de1209 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -15,11 +15,7 @@ "declarationMap": true, "sourceMap": true, "outDir": "./dist", - "rootDir": "./src", - "baseUrl": ".", - "paths": { - "@/*": ["./src/*"] - } + "rootDir": "./src" }, "include": ["src/**/*"], "exclude": ["node_modules", "dist", "**/__tests__/**"] From efae5886a848c8831b3df88c99cadd3782a5d571 Mon Sep 17 00:00:00 2001 From: Miguel Colmenares Date: Sun, 12 Apr 2026 22:42:08 -0500 Subject: [PATCH 3/3] fix: Add TypeScript 6.0 compatibility to tsconfig - Add explicit types array (node, jest) for TS 6.0 type resolution - Add ignoreDeprecations for baseUrl used internally by tsup DTS build - Remove unused baseUrl and paths (alias @/ only in template docs) --- tsconfig.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tsconfig.json b/tsconfig.json index 0de1209..13b48bb 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,6 +2,8 @@ "compilerOptions": { "target": "ES2020", "lib": ["ES2020"], + "types": ["node", "jest"], + "ignoreDeprecations": "6.0", "allowJs": true, "skipLibCheck": true, "strict": true,