-
Notifications
You must be signed in to change notification settings - Fork 50
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
Add support for tsconfig.json files with extends
property
#29
Comments
Actually I can see the |
Has there been any updates on this? I'm trying to add this to a monorepo but I'm having issues where path aliases defined in a child package's tsconfig.json file are being ignored. |
@jjcfatras No updates on this. Unfortunately, I'm not finding any time to dedicate to this project. But the whole thing is about 50 lines of code, so I recommend copying the code and adjusting to your needs. |
I am going to go a little off-topic here, but maybe I can save some time to the future reader. I was very eager to add support for I am not sure if TypeScript has an API for this (i.e. get a list of all the files that are affected by a single update). Until then, if your purpose here is to make sure your change didn't break your app/library, you will probably need to run Having said that, if you are okay with this limitation and you still need support for |
Agreed, I'm just using plain |
Hello, thanks for maintaining this project!
I am trying to run
tsc-files
twice as part of a pre-commit hook, once for myapp
files and then for mytest
ones.The
app
works fine, since there is atsconfig.json
at the root of my project.However I haven't been able to run
tsc-files
for mytest
files, where I have another tsconfig file with this content:when I run
tsc-files -p -test/tsconfig.json
from<parent-directory>/my-repo/
I get:If I go into the
test
directory and runtsc-files
, I get:Am I missing something?
If this is not supported yet, are you interested in receiving PRs for adding this functionality?
The text was updated successfully, but these errors were encountered: