1.0.0 • Published 4 years ago

@charlietango/babel v1.0.0

Weekly downloads
4
License
MIT
Repository
github
Last release
4 years ago

@charlietango/babel

Babel preset to configure a setup that allows us to work with React alongside Flow or Typescript.

Installation

Create a file named .babelrc with following contents in the root folder of your project:

{
  "presets": ["@charlietango/babel"]
}

Extra plugins

  • babel-plugin-lodash - Ensures lodash is optimized when imported
  • babel-plugin-macros - Enable support for macros
  • react-hot-loader - Support hot reloading of react

CSS-in-JS

If you need to use a CSS-in-JS framework, you should add the presets/plugins to the babel configuration according to the documentation.

styled-components

{
  "plugins": ["babel-plugin-styled-components"]
}

emotion

{
  "presets": ["@emotion/babel-preset-css-prop"]
}