@iterable/react-native-sdk
Version:
Iterable SDK for React Native.
27 lines (25 loc) • 526 B
JavaScript
module.exports = function (api) {
api.cache(true);
const presets = ['module:@react-native/babel-preset'];
const plugins = [
[
'module:react-native-dotenv',
{
envName: 'APP_ENV',
moduleName: '@env',
path: '.env',
blocklist: null,
allowlist: null,
blacklist: null, // DEPRECATED
whitelist: null, // DEPRECATED
safe: false,
allowUndefined: true,
verbose: false,
},
],
];
return {
presets,
plugins
};
}