Configure Babel

Babel can be configured! Many other tools have similar configs: ESLint (.eslintrc), Prettier (.prettierrc).

All Babel API options are allowed. However, if the option requires JavaScript, you may want to use a JavaScript configuration file.

What’s your use case?

  • You are using a monorepo?
  • You want to compile node_modules?

babel.config.json is for you!

  • You have a configuration that only applies to a single part of your project?

.babelrc.json is for you!

  • Guy Fieri is your hero?

We recommend using the babel.config.json format. Babel itself is using it.

babel.config.json

Create a file called babel.config.json with the following content at the root of your project (where the package.json is).

  1. {
  2. "presets": [...],
  3. "plugins": [...]
  4. }
  1. module.exports = function (api) {
  2. api.cache(true);
  3. const presets = [ ... ];
  4. const plugins = [ ... ];
  5. return {
  6. presets,
  7. plugins
  8. };
  9. }

Check out the babel.config.json documentation to see more configuration options.

.babelrc.json

Create a file called .babelrc.json with the following content in your project.

  1. {
  2. "presets": [...],
  3. "plugins": [...]
  4. }

Check out the .babelrc documentation to see more configuration options.

package.json

Alternatively, you can choose to specify your .babelrc.json config from within package.json using the babel key like so:

  1. {
  2. "name": "my-package",
  3. "version": "1.0.0",
  4. "babel": {
  5. "presets": [ ... ],
  6. "plugins": [ ... ],
  7. }
  8. }

JavaScript configuration files

You can also write babel.config.json and .babelrc.json files using JavaScript:

  1. const presets = [ ... ];
  2. const plugins = [ ... ];
  3. module.exports = { presets, plugins };

You are allowed to access any Node.js APIs, for example a dynamic configuration based on the process environment:

  1. const presets = [ ... ];
  2. const plugins = [ ... ];
  3. if (process.env["ENV"] === "prod") {
  4. plugins.push(...);
  5. }
  6. module.exports = { presets, plugins };

You can read more about JavaScript configuration files in the dedicated documentation

Using the CLI (@babel/cli)

  1. babel --plugins @babel/plugin-transform-arrow-functions script.js

Check out the babel-cli documentation to see more configuration options.

Using the API (@babel/core)

  1. require("@babel/core").transform("code", {
  2. plugins: ["@babel/plugin-transform-arrow-functions"]
  3. });

Check out the babel-core documentation to see more configuration options.

Print effective configs

You can tell Babel to print effective configs on a given input path

  1. # *nix or WSL
  2. BABEL_SHOW_CONFIG_FOR=./src/myComponent.jsx npm start
  1. $env:BABEL_SHOW_CONFIG_FOR = ".\src\myComponent.jsx"; npm start

BABEL_SHOW_CONFIG_FOR accepts both absolute and relative file paths. If it is a relative path, it will be resolved from cwd.

Once Babel processes the input file specified by BABEL_SHOW_CONFIG_FOR, Babel will print effective configs to the console. Here is an example output:

  1. Babel configs on "/path/to/cwd/src/index.js" (ascending priority):
  2. config /path/to/cwd/babel.config.json
  3. {
  4. "sourceType": "script",
  5. "plugins": [
  6. "@foo/babel-plugin-1
  7. ],
  8. "extends": "./my-extended.js"
  9. }
  10. config /path/to/cwd/babel.config.json .env["test"]
  11. {
  12. "plugins": [
  13. [
  14. "@foo/babel-plugin-3",
  15. {
  16. "noDocumentAll": true
  17. },
  18. ]
  19. ]
  20. }
  21. config /path/to/cwd/babel.config.json .overrides[0]
  22. {
  23. "test": "src/index.js",
  24. "sourceMaps": true
  25. }
  26. config /path/to/cwd/.babelrc
  27. {}
  28. programmatic options from @babel/cli
  29. {
  30. "sourceFileName": "./src/index.js",
  31. "presets": [
  32. "@babel/preset-env"
  33. ],
  34. "configFile": "./my-config.js",
  35. "caller": {
  36. "name": "@babel/cli"
  37. },
  38. "filename": "./src/index.js"
  39. }

Babel will print effective config sources ordered by ascending priority. Using the example above, the priority is:

  1. babel.config.json < .babelrc < programmatic options from @babel/cli

In other words, babel.config.json is overwritten by .babelrc, and .babelrc is overwritten by programmatic options.

For each config source, Babel prints applicable config items (e.g. overrides and .env) in the order of ascending priority. Generally each config sources has at least one config item — the root content of configs. If you have configured overrides or env, Babel will not print them in the root, but will instead output a separate config item titled as .overrides[index], where index is the position of the item. This helps determine whether the item is effective on the input and which configs it will override.

If your input is ignored by ignore or only, Babel will print that this file is ignored.

How Babel merges config items

For each config items mentioned above, Babel applies Object.assign on options except for plugins and presets, which is concatenated by Array#concat. For example

  1. const config = {
  2. plugins: [["plugin-1a", { loose: true }], "plugin-1b"],
  3. presets: ["preset-1a"],
  4. sourceType: "script"
  5. }
  6. const newConfigItem = {
  7. plugins: [["plugin-1a", { loose: false }], "plugin-2b"],
  8. presets: ["preset-1a", "preset-2a"],
  9. sourceType: "module"
  10. }
  11. BabelConfigMerge(config, newConfigItem);
  12. // returns
  13. ({
  14. plugins: [
  15. ["plugin-1a", { loose: false }],
  16. "plugin-1b",
  17. ["plugin-1a", { loose: false }],
  18. "plugin-2b"
  19. ], // new plugins are pushed
  20. presets: [
  21. "preset-1a",
  22. "preset-1a",
  23. "preset-2b"
  24. ], // new presets are pushed
  25. sourceType: "module" // sourceType: "script" is overwritten
  26. })