0c990ba276
yarn lock fix yarn3 warnings node 16 on deploy try deploy again check in yarn/releases rm lbry-format from lockfile remove lbry-format yet again fix flow
18 lines
636 B
JavaScript
18 lines
636 B
JavaScript
module.exports = api => {
|
|
api.cache(false);
|
|
|
|
return {
|
|
presets: [['@babel/env', { loose: true, modules: false }], '@babel/react', '@babel/flow'],
|
|
plugins: [
|
|
'import-glob',
|
|
'@babel/plugin-transform-runtime',
|
|
['@babel/plugin-proposal-decorators', { decoratorsBeforeExport: true }],
|
|
['@babel/plugin-proposal-private-methods', { 'loose': false }],
|
|
['@babel/plugin-proposal-private-property-in-object', { 'loose': false }],
|
|
'@babel/plugin-transform-flow-strip-types',
|
|
'@babel/plugin-proposal-class-properties',
|
|
'react-hot-loader/babel',
|
|
],
|
|
ignore: [/node_modules/],
|
|
};
|
|
};
|