-
-
Notifications
You must be signed in to change notification settings - Fork 41
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
Plugin does not resolve "extends" field for tsconfig #371
Labels
Comments
I'll be using get-tsconfig for the time being to overcome this by manually passing |
Fixed! |
sxzz
added a commit
that referenced
this issue
Sep 28, 2023
🎉 This issue has been resolved in version 6.0.2 🎉 The release is available on: Your semantic-release bot 📦🚀 |
That was quick. Thanks, @sxzz! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ESBuild themselves support the "extends" field in tsconfig. This still prevents my build when using the new version due to missing TS configuration options from the base file. My base file has
"experimentalDecorators": true
, which, when not read, results in the issue reported here: #365.For example:
tsconfig.base.json
tsconfig.json
The problem here is that the referenced fix uses the
tsconfigRaw
property which expects a fully resolved config.Could we not use the
tsconfig
property instead oftsconfigRaw
and leave the reading and resolution of the file contents to esbuild, as it supports that out of the box?The text was updated successfully, but these errors were encountered: