mirror of
https://github.com/selfxyz/self.git
synced 2026-02-19 02:24:25 -05:00
19 lines
428 B
JavaScript
19 lines
428 B
JavaScript
module.exports = {
|
|
presets: ['module:@react-native/babel-preset'],
|
|
plugins: [
|
|
['@tamagui/babel-plugin', { platform: 'native' }],
|
|
['@babel/plugin-transform-private-methods', { loose: true }],
|
|
[
|
|
'module:react-native-dotenv',
|
|
{
|
|
moduleName: '@env',
|
|
path: '.env',
|
|
blacklist: null,
|
|
whitelist: null,
|
|
safe: false,
|
|
allowUndefined: true,
|
|
},
|
|
],
|
|
],
|
|
};
|