mirror of
https://github.com/trezor/trezor-wallet
synced 2024-10-31 21:18:54 +00:00
51 lines
1.1 KiB
JavaScript
51 lines
1.1 KiB
JavaScript
module.exports = (api) => {
|
|
// api.cache.forever();
|
|
|
|
const presets = [
|
|
[
|
|
'@babel/preset-env',
|
|
{
|
|
useBuiltIns: 'entry',
|
|
loose: true,
|
|
},
|
|
],
|
|
'@babel/preset-react',
|
|
'@babel/preset-flow',
|
|
];
|
|
|
|
const plugins = [
|
|
'react-hot-loader/babel',
|
|
'@babel/plugin-transform-flow-strip-types',
|
|
'@babel/plugin-proposal-class-properties',
|
|
'@babel/plugin-proposal-object-rest-spread',
|
|
[
|
|
'@babel/plugin-transform-runtime',
|
|
{
|
|
regenerator: true,
|
|
},
|
|
],
|
|
[
|
|
'module-resolver',
|
|
{
|
|
root: [
|
|
'./src',
|
|
],
|
|
alias: {
|
|
public: [
|
|
'./public',
|
|
],
|
|
},
|
|
},
|
|
],
|
|
'babel-plugin-styled-components',
|
|
];
|
|
|
|
if (api.env('test')) {
|
|
presets.push('jest');
|
|
}
|
|
|
|
return {
|
|
presets,
|
|
plugins,
|
|
};
|
|
}; |