Files
SheetHappens/babel.config.js
T

10 lines
207 B
JavaScript

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