Files
jitsi-meet/babel.config.js

21 lines
589 B
JavaScript
Raw Normal View History

module.exports = {
presets: [ 'module:@react-native/babel-preset' ],
env: {
production: {
plugins: [ 'react-native-paper/babel' ]
}
},
2024-10-29 13:05:01 +02:00
// This happens because react native has conflict with @babel/plugin-transform-private-methods plugin
// https://github.com/ethers-io/ethers.js/discussions/4309#discussioncomment-6694524
plugins: [
'optional-require',
[
'@babel/plugin-transform-private-methods', {
'loose': true
}
],
'react-native-worklets-core/plugin'
2024-10-29 13:05:01 +02:00
]
};