Files
margelo--react-native-graph/example/babel.config.js
Ritesh Shukla 5f5af559f9 feat: React-native-graphs reboot (#124)
* upgrade-everything

* remove tests
2026-04-15 20:18:45 +05:30

18 lines
388 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'],
plugins: ['react-native-worklets/plugin'],
},
{ root, pkg }
);
};