2018-11-08 22:37:12 +08:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
const presets = [
|
|
|
|
[
|
|
|
|
'@babel/preset-env',
|
|
|
|
{
|
|
|
|
modules: false,
|
|
|
|
useBuiltIns: 'usage',
|
|
|
|
targets: {
|
|
|
|
browsers: ['>0.25%', 'not ie 11', 'not op_mini all']
|
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
|
|
|
'@babel/preset-react'
|
|
|
|
];
|
|
|
|
|
|
|
|
const plugins = [
|
2018-12-24 23:57:03 +08:00
|
|
|
'react-hot-loader/babel',
|
2018-11-08 22:37:12 +08:00
|
|
|
[
|
|
|
|
'@babel/plugin-transform-runtime',
|
|
|
|
{
|
|
|
|
corejs: false,
|
|
|
|
helpers: true,
|
|
|
|
regenerator: true,
|
|
|
|
useESModules: true
|
|
|
|
}
|
|
|
|
],
|
|
|
|
'@babel/plugin-syntax-dynamic-import',
|
|
|
|
'@babel/plugin-syntax-import-meta',
|
|
|
|
'@babel/plugin-proposal-class-properties',
|
|
|
|
'@babel/plugin-proposal-json-strings',
|
|
|
|
'@babel/plugin-proposal-export-namespace-from',
|
|
|
|
'@babel/plugin-proposal-export-default-from',
|
|
|
|
'@babel/plugin-proposal-do-expressions'
|
|
|
|
];
|
|
|
|
|
|
|
|
module.exports = api => {
|
|
|
|
api.cache(true);
|
|
|
|
return { presets, plugins };
|
|
|
|
};
|