-
Notifications
You must be signed in to change notification settings - Fork 710
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
Error with nested tsconfig extends #380
Comments
+1, having the same issue:
|
If I install 0.5.5, I can reproduce the problem without any use of "extends". I just need to have a I cannot reproduce the problem with typedoc 0.7.1. Consequently, this should be closed. |
1 task
Reopening due to questions raised in #1089 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi!
Recent typescript supports configuration inheritance via "extends" in
tsconfig.json
. Everything's working until extended config tries to extend another itself.Example:
An error occures:
TypeError: Cannot convert undefined or null to object
attypedoc\dist\lib\utils\options\readers\tsconfig.js:60
when trying todelete compilerOptions[key];
.Seems like
data.raw
does not containcompilerOptions
at all.The text was updated successfully, but these errors were encountered: