-
Notifications
You must be signed in to change notification settings - Fork 161
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
CJS and ESM for Node and Browser environments #586
Conversation
|
|
Codecov Report
@@ Coverage Diff @@
## development #586 +/- ##
===============================================
+ Coverage 74.46% 74.48% +0.02%
===============================================
Files 182 182
Lines 6398 6416 +18
Branches 1574 1579 +5
===============================================
+ Hits 4764 4779 +15
- Misses 1612 1615 +3
Partials 22 22
Continue to review full report at Codecov.
|
There are a multiple problems in switching to new style of development with esbuild mainly for monorepos.
Dropping
Using export maps
So, all in all there a multiple problems in moving a monorepo structure along with typescript to full |
cjs
modules insideesm
. Since, we are exposingmodule
underexports too. Now build tools pick only
esm` and these causes interop issues for us.#583