create-better-t-stack
Version:
A modern CLI tool for scaffolding end-to-end type-safe TypeScript projects with best practices and customizable configurations
22 lines (17 loc) • 362 B
JavaScript
module.exports = function (api) {
api.cache(true);
const plugins = [];
plugins.push([
'react-native-unistyles/plugin',
{
root: "src",
autoProcessRoot: 'app',
autoProcessImports: ['@/components']
},
]);
plugins.push('react-native-reanimated/plugin');
return {
presets: ['babel-preset-expo'],
plugins,
};
};