This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2018-09-14 17:59:48 +02:00
|
|
|
module.exports = (api) => {
|
|
|
|
const env = api.env();
|
|
|
|
|
|
|
|
const envOptions = {
|
|
|
|
debug: false,
|
|
|
|
loose: true,
|
|
|
|
modules: false,
|
|
|
|
};
|
|
|
|
|
|
|
|
const config = {
|
|
|
|
presets: [
|
|
|
|
'@babel/react',
|
|
|
|
['@babel/env', envOptions],
|
|
|
|
],
|
|
|
|
plugins: [
|
|
|
|
'@babel/syntax-dynamic-import',
|
|
|
|
['@babel/proposal-object-rest-spread', { useBuiltIns: true }],
|
|
|
|
['@babel/proposal-decorators', { legacy: true }],
|
|
|
|
'@babel/proposal-class-properties',
|
2019-04-10 18:17:24 +02:00
|
|
|
['react-intl', { messagesDir: './build/messages/' }],
|
2018-09-14 17:59:48 +02:00
|
|
|
'preval',
|
|
|
|
],
|
|
|
|
};
|
|
|
|
|
|
|
|
switch (env) {
|
|
|
|
case 'production':
|
|
|
|
envOptions.debug = false;
|
|
|
|
config.plugins.push(...[
|
|
|
|
'lodash',
|
|
|
|
[
|
|
|
|
'transform-react-remove-prop-types',
|
|
|
|
{
|
|
|
|
mode: 'remove',
|
|
|
|
removeImport: true,
|
|
|
|
additionalLibraries: [
|
|
|
|
'react-immutable-proptypes',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'@babel/transform-react-inline-elements',
|
|
|
|
[
|
|
|
|
'@babel/transform-runtime',
|
|
|
|
{
|
|
|
|
helpers: true,
|
|
|
|
regenerator: false,
|
|
|
|
useESModules: true,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
]);
|
|
|
|
break;
|
|
|
|
case 'development':
|
|
|
|
envOptions.debug = true;
|
|
|
|
config.plugins.push(...[
|
|
|
|
'@babel/transform-react-jsx-source',
|
|
|
|
'@babel/transform-react-jsx-self',
|
|
|
|
]);
|
|
|
|
break;
|
|
|
|
case 'test':
|
|
|
|
envOptions.modules = 'commonjs';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return config;
|
|
|
|
};
|
|
|
|
|