@charlietango/babel
v1.0.0
Published
Babel preset used by Charlie Tango
Downloads
2
Readme
@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 importedbabel-plugin-macros
- Enable support for macrosreact-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"]
}