I have a project that runs both a build using rollup and a build using browserify for two different outputs. Now, they are both located in the same root dir and I have separate gulp-tasks running for both of them. My problem is that my browserify task wants a .babelrc file with the following configuration:
{
"presets": ["es2015"]
}
and my rollup task wants this configuration:
{
"presets": ["es2015-rollup"]
}
My question is, can I have two separate .babelrc files and configure which one to use in my gulp and karma config?