expo-popcore-app/babel.config.js

15 lines
288 B
JavaScript

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