mirror of
https://github.com/aljazceru/react-native-pubky.git
synced 2025-12-17 06:34:21 +01:00
13 lines
296 B
JavaScript
13 lines
296 B
JavaScript
const path = require('path');
|
|
const { getConfig } = require('react-native-builder-bob/babel-config');
|
|
const pkg = require('../package.json');
|
|
|
|
const root = path.resolve(__dirname, '..');
|
|
|
|
module.exports = getConfig(
|
|
{
|
|
presets: ['module:@react-native/babel-preset'],
|
|
},
|
|
{ root, pkg }
|
|
);
|