Closed
Description
It seems to be a good convention across the community (glamor, next.js, more) to provide a shortcut for auto-including Babel settings. If user wants to customize presets, right now he has to include these presets manually. What I'm proposing:
{
"presets": [
"ava/babel",
"custom-preset"
]
}
It would also significantly simplify the creation of tools like ava-preact-init, ava-react-init, ava-inferno-init, etc. If we provide a simple entrypoint for these presets, we won't need to update each of these modules when we change something in our presets.