-
Notifications
You must be signed in to change notification settings - Fork 507
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(fix): correctly read tsconfig esModuleInterop (#555)
- it's a property of compilerOptions, not of overall tsconfig - i.e. tsconfig.compilerOptions.esModuleInterop - because this was incorrectly read, Rollup's esModule would always be set to `undefined`, and Rollup would then default to `true` - so esModuleInterop still wasn't being respected properly, I just shifted the defaults when I incorrectly patched this :/ (test): add tests for the default tsconfig as well as for when it's explicitly set to false
- Loading branch information
Showing
3 changed files
with
15 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters