Merge branch 'fix-typo-drive' into 'main'
[ProtonMail-WebClient.git] / packages / pass / babel.config.js
blobfe4b5e317a8ab6862bda7115954b760129d00c29
1 // The Extension build handles transpiling & bundling with Webpack
2 // and leverages Babel with its own configuration. This configuration
3 // is only consumed by babel-jest for tests at the moment.
5 const presetEnvOpts = {
6     bugfixes: true,
7     useBuiltIns: 'usage',
8     corejs: '3.29',
9 };
11 module.exports = {
12     presets: [
13         ['@babel/preset-env', presetEnvOpts],
14         '@babel/preset-typescript',
15         ['@babel/preset-react', { development: true, runtime: 'automatic' }],
16     ],