-
Notifications
You must be signed in to change notification settings - Fork 360
Closed
Description
Apart for all the amazing automated work and the bundles generated, we should output ES modules bundles with the help of babel-preset-env
{
"presets": [
["@babel/preset-env", {
"targets": {
"esmodules": true
}
}]
]
}
This will help devs ship less javascript if they support shipping these bundles by any possible way.
Reactions are currently unavailable