| 1234567891011121314151617181920212223242526272829303132333435 | module.exports = ({ isESM }) => {    return {        presets: [            [                '@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,                },            ],        ]    };};
 |