-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Update package.json #2
Conversation
@BjornMelgaard You can find me online on the zeit-community slack |
wow, eeee, with ts-loader it works) |
@nelak thank you very much) |
Happy to have been able to help. |
@nelak yep cleaned) |
@nelak , can you help one more time |
@BjornMelgaard I don't see an easy way out of this right now. |
@nelak ok, thanks, kind of get it |
@nelak, what do you think about using awesome-typescript-loader? |
@BjornMelgaard I believe this should really be handled by webpack when it does the module resolution through aliases to minimize configuration and points of failure. The problem is that the files are emitted with the unresolved path although typescript was able to resolve the references. I don't know if it's possible but another option would be to emit the resolved path at compile time, so that compiled files have their paths already resolved, which probably involves looking at the typescript compiler options. |
@nelak I cant, just updated it says
tried
says
|
@BjornMelgaard I know, I had already tried that before that was what my previous comment was referring to when I mentioned that you need to override the emit-file-loader transform since it's where the webpack aliases are being resolved. |
@BjornMelgaard PS: I believe next.js suffers from this same issues also |
are you saying that I want to change my typescriptLoader in next.config.js so it will look like this, but for ts, not js? P.S. will really appreciate if you look |
Not the typescriptLoader but the emitLoader. The problem of overriding the transform method is again that next.config.js is ES5 which will give tons of headaches. I see two options, modifying next to allow passing other aliases (I think this may work), or figure out how to make typescript output the relative paths in the compiled js. |
@BjornMelgaard I understand what you are trying to do but I think it won't work unless you can add alias the paths in webpack as next is doing for their components. Considering the typescript docs I'd say having typescript output the relative paths is probably not supported.
|
|
@BjornMelgaard I've just experimented a little bit and as I said before the solution seems to be to provide the aliases to webpack, the problem is that those aliases need to be calculated relative to the folder location or you'll start getting failures again. pages |
@BjornMelgaard Check #3 for a possible solution |
@BjornMelgaard Let keep tracking your issues here.
I'm adding the missing loader.
I've been able to run your sample properly without issues doing
npm link next
afternpm link
your other repository.