Add Babel config for @mailpoet/components

[MAILPOET-5015]
This commit is contained in:
Jan Jakes 2023-01-26 13:54:52 +01:00 committed by Jan Jakeš
parent 790f3f4974
commit 093814eaa7
2 changed files with 9 additions and 0 deletions

8
babel.config.js Normal file
View File

@ -0,0 +1,8 @@
export default {
presets: [
['@babel/preset-react', { runtime: 'automatic' }],
'@babel/preset-env',
'@babel/preset-typescript',
],
plugins: [['@babel/plugin-transform-runtime']],
};

View File

@ -0,0 +1 @@
export { default } from '../../../babel.config.js';