Files
create-better-t-stack/apps/cli/templates/frontend/native/unistyles/babel.config.js
2025-06-27 09:09:58 +05:30

22 lines
362 B
JavaScript

module.exports = function (api) {
api.cache(true);
const plugins = [];
plugins.push([
'react-native-unistyles/plugin',
{
autoProcessRoot: 'app',
autoProcessImports: ['@/components'],
root: "src"
},
]);
plugins.push('react-native-reanimated/plugin');
return {
presets: ['babel-preset-expo'],
plugins,
};
};