You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The module field was used for ESM builds by bundlers before there was type: module, but because of type: module, the module field never became a standard. Instead, package exports can be used to define entry points for different environments which I already use.
As module is not a standard and bundlers and Node 12+ support the exports field, there is no reason to keep it.
The
module
field was used for ESM builds by bundlers before there wastype: module
, but because oftype: module
, themodule
field never became a standard. Instead, package exports can be used to define entry points for different environments which I already use.As
module
is not a standard and bundlers and Node 12+ support theexports
field, there is no reason to keep it.More info:
The text was updated successfully, but these errors were encountered: