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