2018-09-14 15:59:48 +00:00
|
|
|
module.exports = (api) => {
|
|
|
|
const env = api.env();
|
|
|
|
|
2019-12-02 12:38:53 +00:00
|
|
|
const reactOptions = {
|
|
|
|
development: false,
|
|
|
|
};
|
|
|
|
|
2018-09-14 15:59:48 +00:00
|
|
|
const envOptions = {
|
|
|
|
loose: true,
|
|
|
|
modules: false,
|
2019-12-02 12:38:53 +00:00
|
|
|
debug: false,
|
2018-09-14 15:59:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const config = {
|
|
|
|
presets: [
|
2023-04-03 01:31:39 +00:00
|
|
|
'@babel/preset-typescript',
|
2019-12-02 12:38:53 +00:00
|
|
|
['@babel/react', reactOptions],
|
2018-09-14 15:59:48 +00:00
|
|
|
['@babel/env', envOptions],
|
|
|
|
],
|
|
|
|
plugins: [
|
2019-06-18 20:58:18 +00:00
|
|
|
['react-intl', { messagesDir: './build/messages' }],
|
2018-09-14 15:59:48 +00:00
|
|
|
'preval',
|
2023-04-11 12:24:26 +00:00
|
|
|
'@babel/plugin-proposal-optional-chaining',
|
2023-04-03 10:31:34 +00:00
|
|
|
'@babel/plugin-proposal-nullish-coalescing-operator',
|
2018-09-14 15:59:48 +00:00
|
|
|
],
|
2019-12-02 12:38:53 +00:00
|
|
|
overrides: [
|
|
|
|
{
|
|
|
|
test: /tesseract\.js/,
|
|
|
|
presets: [
|
|
|
|
['@babel/env', { ...envOptions, modules: 'commonjs' }],
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
2018-09-14 15:59:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
switch (env) {
|
|
|
|
case 'production':
|
|
|
|
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':
|
2019-12-02 12:38:53 +00:00
|
|
|
reactOptions.development = true;
|
2018-09-14 15:59:48 +00:00
|
|
|
envOptions.debug = true;
|
|
|
|
break;
|
|
|
|
case 'test':
|
|
|
|
envOptions.modules = 'commonjs';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return config;
|
|
|
|
};
|