I would like to support babel-plugin-wildcard, into my library.. is that possible to create using microbundle?
Hiya - Microbundle doesn't use Webpack, but it does use Babel and you can customize the config.
Just create a .babelrc in your project root:
{
"plugins": [
"babel-plugin-wildcard"
]
}
FWIW Microbundle already supports file globs for entries, so it's not super clear to me why wildcard directory imports would be required.
Most helpful comment
Hiya - Microbundle doesn't use Webpack, but it does use Babel and you can customize the config.
Just create a
.babelrcin your project root:FWIW Microbundle already supports file globs for entries, so it's not super clear to me why wildcard directory imports would be required.