react-native-tabeller/example/babel.config.js
Asad cdb7f2b5ff
Some checks are pending
CI / lint (push) Waiting to run
CI / test (push) Waiting to run
CI / build-library (push) Waiting to run
CI / build-web (push) Waiting to run
chore: first commit
2025-03-08 14:33:22 -05:00

17 lines
339 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 = function (api) {
api.cache(true);
return getConfig(
{
presets: ['babel-preset-expo'],
},
{ root, pkg }
);
};