Skip to content

Commit a0966c5

Browse files
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 <noreply@paperclip.ing>
1 parent cab71a4 commit a0966c5

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

src/main/frontend/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
"noImplicitReturns": true,
1818
"noFallthroughCasesInSwitch": true,
1919
"forceConsistentCasingInFileNames": true,
20-
"baseUrl": ".",
2120
"paths": {
2221
"@/*": ["./src/*"]
2322
}

0 commit comments

Comments
 (0)