Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Why are absolute ids skipped? #101

Open
eddiemonge opened this issue Mar 14, 2023 · 3 comments
Open

Why are absolute ids skipped? #101

eddiemonge opened this issue Mar 14, 2023 · 3 comments
Labels
bug Something isn't working help wanted Extra attention is needed

Comments

@eddiemonge
Copy link

On this line https://github.com/aleclarson/vite-tsconfig-paths/blob/master/src/index.ts#L114, it skips it if it is an "absolute path" but why?

I have this in my tsconfig: "paths": { "/*": ["./*"] }," so I can do imports like import CardNavItem from '/UI/CardNavItem';. This fails through the plugin but if I remove the isAbsolute check it works and in my limited testing, doesn't seem to break anything else.

@aleclarson aleclarson added the bug Something isn't working label Mar 14, 2023
@aleclarson
Copy link
Owner

It's a perf optimization. PR welcome

@aleclarson aleclarson added the help wanted Extra attention is needed label Mar 14, 2023
@rtmann
Copy link

rtmann commented Oct 17, 2023

Perf optimization? So is this saying that vite-tsconfig-paths does not support absolute alias's like "@common/models" ????

If so, I've wasted days debugging my build and this was the problem the whole time.

@aleclarson
Copy link
Owner

@rtmann This issue is about using tsconfig to redirect paths like /x/y/z (note the leading slash)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working help wanted Extra attention is needed
Projects
None yet
Development

No branches or pull requests

3 participants