`baseUrl` is deprecated and now defaults to `./` <img width="1033" height="291" alt="Image" src="https://github.com/user-attachments/assets/2f179041-251a-4d23-95d1-a141b291b49e" /> This is a bit annoying since we alias the `baseUrl` to `./src/components` and do not use the now default `baseUrl`. I suspect that we can temporarily fix this issue with a TypeScript path alias e.g. ```jsonc { // snip "paths": { "*": "./src/components" }, // snip } ```
{ // snip "paths": { "*": "./src/components" }, // snip }