Files
native-app/apps/expo/babel.config.js
2024-02-03 20:33:27 +01:00

12 lines
285 B
JavaScript

/** @type {import("@babel/core").ConfigFunction} */
module.exports = function (api) {
api.cache(true);
return {
presets: [
["babel-preset-expo", { jsxImportSource: "nativewind" }],
"nativewind/babel",
],
plugins: ["react-native-reanimated/plugin"],
};
};