Skip to content
Snippets Groups Projects
.babelrc 273 B
Newer Older
vimal1083's avatar
vimal1083 committed
{
    presets: [
      '@babel/preset-react',
      [
        '@babel/preset-env',
        {
          useBuiltIns: "usage",
           corejs: 3
        }
      ]
    ],
    plugins: [
      'react-hot-loader/babel',
      '@babel/plugin-proposal-class-properties'
    ]
}