Yaltopia-Tickets-App/babel.config.js
2026-03-01 14:43:12 +03:00

11 lines
233 B
JavaScript

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