-
Notifications
You must be signed in to change notification settings - Fork 362
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
--cwd
and --tsconfig
#939
Comments
It's not intentional, no. Just an oversight! If you're willing to implement this (I can otherwise take a look over the next couple days probably), it should be pretty simple (I believe. TS can quickly become a rabbit hole, so hopefully I'm not too naive for hoping this is simple).
Line 544 in fb0a437
Edit: Missed part of your comment. I don't think we want to do Admittedly it'd be a bit annoying if you had to do Edit 2: (Forgot to press "post" on this) Turns out rpt2 has a Very easy fix. |
Thanks @rschristian ! |
Np, not sure when it'll make sense to cut a release but hopefully something like |
Is it expected that
tsconfig
resolves against the calling directory even when--cwd
is specified? I have a use case where I have a browser lib and a node lib in the same repo that have distincttsconfig.json
files. Currently I have to specify the full path to maketsconfig.json
discovery work, that is--cwd a/b/c --tsconfig a/b/c/tsconfig.json
instead of just--cwd a/b/c --tsconfig tsconfig.json
or just--cwd a/b/c
. Is there some other configuration that I do not know about that would make this more intuitive?The text was updated successfully, but these errors were encountered: