2023-09-12 08:15:01 +08:00
|
|
|
module.exports = function(api) {
|
|
|
|
api.cache(true);
|
|
|
|
return {
|
|
|
|
presets: ['babel-preset-expo'],
|
2023-09-26 14:33:01 +08:00
|
|
|
plugins: [
|
|
|
|
'@babel/plugin-proposal-export-namespace-from',
|
|
|
|
'react-native-reanimated/plugin',
|
|
|
|
],
|
|
|
|
|
2023-09-12 08:15:01 +08:00
|
|
|
};
|
|
|
|
};
|