Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(env/deps): use agilgur5/tsdx fork for esModuleInterop etc
- this uses my fork which merged my PR/commit that fixes the missing __esModule in CJS build output - which has been an issue in this library since adopting tsdx, as that's still an undocumented bug in tsdx - the bug means that default imports get transpiled to x = require instead of { default: x } = require - which affects anyone using CJS and importing the default export - and most apps still transpile down, as do most test runners, so basically it affects almost everyone using the default - for more details, see #12 - until this fix is merged and released in the root library, will be using this fork - it also has my recently merged PR/commit that changes the cacheRoot to ./node_modules/.cache/ instead of ./rts2_cache_* directories - can remove them from gitignore and they no longer clutter app root
- Loading branch information