-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Closed
Description
As of #1798 we support Babel 7 beta 48. This supports a new babel.config.js file.
We need to update our Babel recipe with examples of babel.config.js files. I think we may even be able to remove .babelrc examples, as I'm under the impression that this is the desired new config format for Babel 7.
We need to update our Babel integration tests (in test/api.js) so we're also testing babel.config.js files. We should change our default behavior so that both babelrc and config files are considered when compiling test & helper files. See:
Line 28 in a5de369
| const defaultOptions = {babelrc: true}; |
Line 125 in a5de369
| configFile: false, |
gajus, jsardev and leegee