From a0966c53cbd64f3497c61e5842e5e5d3730b3755 Mon Sep 17 00:00:00 2001 From: Amit Kumar Date: Fri, 24 Apr 2026 17:12:40 +0000 Subject: [PATCH] fix(frontend): drop deprecated tsconfig baseUrl (RAN-11) TypeScript 5.5 deprecated baseUrl (TS5101). Removing it makes the local `mvn test` / `npm run build` green on Node >= 22 without a silent `ignoreDeprecations` suppression. The `paths` mapping is retained and resolves relative to tsconfig.json under `moduleResolution: "bundler"`, and Vite's `resolve.alias` already handles `@/*` at bundle time. Verified: `npm run build` (tsc -b && vite build) on Node v24.15.0. Co-Authored-By: Paperclip --- src/main/frontend/tsconfig.json | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/frontend/tsconfig.json b/src/main/frontend/tsconfig.json index b02f8c5e..aeca1c9a 100644 --- a/src/main/frontend/tsconfig.json +++ b/src/main/frontend/tsconfig.json @@ -17,7 +17,6 @@ "noImplicitReturns": true, "noFallthroughCasesInSwitch": true, "forceConsistentCasingInFileNames": true, - "baseUrl": ".", "paths": { "@/*": ["./src/*"] }