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.
Apart for all the amazing automated work and the bundles generated, we should output ES modules bundles with the help of
babel-preset-envThis will help devs ship less javascript if they support shipping these bundles by any possible way.