12345678910111213141516171819202122232425262728293031323334353637 |
- module.exports = ({ isESM }) => {
- return {
- presets: [
- '@babel/preset-react',
- [
- '@babel/preset-env',
- {
- modules: isESM ? false : 'commonjs',
- targets: {
- browsers: [
- "> 0.5%",
- "last 2 versions",
- "Firefox ESR",
- "not dead",
- "not IE 11"
- ]
- }
- },
- ],
- ],
- plugins: [
- [
- '@babel/plugin-transform-runtime',
- {
- corejs: 3
- },
- ],
- [
- '@babel/plugin-proposal-decorators',
- {
- legacy: true,
- },
- ],
- ]
- };
- };
|