16 lines
364 B
JavaScript
16 lines
364 B
JavaScript
/** @type {import("@babel/core").ConfigFunction} */
|
|
module.exports = function (api) {
|
|
api.cache.forever();
|
|
|
|
return {
|
|
presets: [
|
|
["babel-preset-expo", { jsxImportSource: "nativewind" }],
|
|
"nativewind/babel",
|
|
],
|
|
plugins: [
|
|
require.resolve("expo-router/babel"),
|
|
require.resolve("react-native-reanimated/plugin"),
|
|
],
|
|
};
|
|
};
|