mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-11 04:07:34 +03:00
15 lines
371 B
JavaScript
15 lines
371 B
JavaScript
|
module.exports = {
|
||
|
presets: ['@babel/preset-env', '@babel/preset-react', '@babel/preset-flow'],
|
||
|
plugins: [
|
||
|
[
|
||
|
'@babel/plugin-transform-runtime',
|
||
|
{
|
||
|
regenerator: true
|
||
|
}
|
||
|
],
|
||
|
['@babel/plugin-proposal-decorators', { legacy: true }],
|
||
|
'@babel/plugin-proposal-class-properties',
|
||
|
'@babel/plugin-proposal-export-default-from'
|
||
|
]
|
||
|
};
|