From 1926ad9085b09fa4f669e92fab6472490c9e18e0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Mar 2026 19:04:34 +0300 Subject: [PATCH] chore(deps-dev): bump typescript from 5.9.3 to 6.0.2 in /frontend (#734) * chore(deps-dev): bump typescript from 5.9.3 to 6.0.2 in /frontend 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] * fix: remove base url from ts config --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Stavros --- frontend/bun.lock | 4 ++-- frontend/package.json | 2 +- frontend/tsconfig.app.json | 7 +++---- frontend/tsconfig.json | 9 ++++----- 4 files changed, 10 insertions(+), 12 deletions(-) diff --git a/frontend/bun.lock b/frontend/bun.lock index d127754..0d73398 100644 --- a/frontend/bun.lock +++ b/frontend/bun.lock @@ -48,7 +48,7 @@ "prettier": "3.8.1", "rollup-plugin-visualizer": "^7.0.1", "tw-animate-css": "^1.4.0", - "typescript": "~5.9.3", + "typescript": "~6.0.2", "typescript-eslint": "^8.57.2", "vite": "^8.0.3", }, @@ -889,7 +889,7 @@ "type-check": ["type-check@0.4.0", "", { "dependencies": { "prelude-ls": "^1.2.1" } }, "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew=="], - "typescript": ["typescript@5.9.3", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw=="], + "typescript": ["typescript@6.0.2", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-bGdAIrZ0wiGDo5l8c++HWtbaNCWTS4UTv7RaTH/ThVIgjkveJt83m74bBHMJkuCbslY8ixgLBVZJIOiQlQTjfQ=="], "typescript-eslint": ["typescript-eslint@8.57.2", "", { "dependencies": { "@typescript-eslint/eslint-plugin": "8.57.2", "@typescript-eslint/parser": "8.57.2", "@typescript-eslint/typescript-estree": "8.57.2", "@typescript-eslint/utils": "8.57.2" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", "typescript": ">=4.8.4 <6.0.0" } }, "sha512-VEPQ0iPgWO/sBaZOU1xo4nuNdODVOajPnTIbog2GKYr31nIlZ0fWPoCQgGfF3ETyBl1vn63F/p50Um9Z4J8O8A=="], diff --git a/frontend/package.json b/frontend/package.json index 9f99354..0f9dfb7 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -54,7 +54,7 @@ "prettier": "3.8.1", "rollup-plugin-visualizer": "^7.0.1", "tw-animate-css": "^1.4.0", - "typescript": "~5.9.3", + "typescript": "~6.0.2", "typescript-eslint": "^8.57.2", "vite": "^8.0.3" } diff --git a/frontend/tsconfig.app.json b/frontend/tsconfig.app.json index fa96283..4fcbede 100644 --- a/frontend/tsconfig.app.json +++ b/frontend/tsconfig.app.json @@ -1,9 +1,8 @@ { "compilerOptions": { // Resolve paths - "baseUrl": ".", "paths": { - "@/*": ["./src/*"] + "@/*": ["./src/*"], }, "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", @@ -26,7 +25,7 @@ "noUnusedLocals": true, "noUnusedParameters": true, "noFallthroughCasesInSwitch": true, - "noUncheckedSideEffectImports": true + "noUncheckedSideEffectImports": true, }, - "include": ["src"] + "include": ["src"], } diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json index fec8c8e..30a37f6 100644 --- a/frontend/tsconfig.json +++ b/frontend/tsconfig.json @@ -2,12 +2,11 @@ "files": [], "references": [ { "path": "./tsconfig.app.json" }, - { "path": "./tsconfig.node.json" } + { "path": "./tsconfig.node.json" }, ], "compilerOptions": { - "baseUrl": ".", "paths": { - "@/*": ["./src/*"] - } - } + "@/*": ["./src/*"], + }, + }, }