Files
create-better-t-stack/apps/cli/templates/frontend/native/babel.config.js
Aman Varshney 7f441ef670 add orpc
2025-04-17 16:45:33 +05:30

13 lines
253 B
JavaScript

module.exports = function (api) {
api.cache(true);
const plugins = [];
plugins.push('react-native-reanimated/plugin');
return {
presets: [['babel-preset-expo', { jsxImportSource: 'nativewind' }], 'nativewind/babel'],
plugins,
};
};