LoginSignup
0

More than 3 years have passed since last update.

Babel - .babelrc vs .babelrc.json vs babel.config.json vs babel.config.js

Posted at
  • Project-wide configuration

    babel.config.json files, with the different extensions (.js, .cjs, .mjs)

  • File-relative configuration

    .babelrc.json files, with the different extensions (.babelrc, .js, .cjs, .mjs)
    package.json files with a "babel" key
    For compatibility reasons, .babelrc is an alias for .babelrc.json.

https://stackoverflow.com/questions/60288375/when-to-use-babel-config-js-and-babelrc
https://awdr74100.github.io/2020-03-16-webpack-babelloader/
https://babeljs.io/docs/en/config-files

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0