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
Right now the resulting dist/index.min.js does not provide named exports because the format is not set to esm. This happens because of padded umd banner and footer. The output should be esm which can then be imported for both the browser and node.
This can be achieved right now by setting package.json like so:
Right now the resulting
dist/index.min.js
does not provide named exports because the format is not set to esm. This happens because of paddedumd
banner and footer. The output should be esm which can then be imported for both the browser and node.This can be achieved right now by setting
package.json
like so:This should be selected by default if:
package.json
type is set tomodule
build.config.format
isesm
The text was updated successfully, but these errors were encountered: