-
-
Notifications
You must be signed in to change notification settings - Fork 228
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
Wrong (default) tsconfig.json
used even though custom one is provided in tsup config
#791
Comments
tsconfig.json
used even though custom one specified in tsup configtsconfig.json
used even though custom one is provided in tsup config
It looks like |
@await-ovo nice, thx for squashing this bug 🚀 |
Yes, I think after the latest changes to |
…e export {} for file that have no exports (#807) Co-authored-by: EGOIST <[email protected]> close #762 close #791
🎉 This issue has been resolved in version 6.6.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
…e export {} for file that have no exports (#807) Co-authored-by: EGOIST <[email protected]> close egoist/tsup#762 close egoist/tsup#791
I have my own tsconfig file path defined to be used for tsup
which has
incremental: false
Somehow tsup still pick up my (default)
tsconfig.json
, thats in the root of the project, which has"incremental": true
and fails with an error:If I delete
tsconfig.json
in root folder (that of course must be present for VS code to pick it up, and for development config), tsup bundles with defined/correcttsconfig.build.json
and no error.The text was updated successfully, but these errors were encountered: