shellphone.app/app/babel.config.js

8 lines
150 B
JavaScript
Raw Normal View History

2021-06-01 21:13:51 +00:00
module.exports = function (api) {
api.cache(true);
return {
presets: ["babel-preset-expo"],
plugins: ["react-native-reanimated/plugin"],
};
};