mirror of
https://github.com/zhigang1992/react-native-notifications.git
synced 2026-01-12 22:50:34 +08:00
13 lines
275 B
JavaScript
13 lines
275 B
JavaScript
module.exports = function (api) {
|
|
api && api.cache(false);
|
|
return {
|
|
presets: [
|
|
'module:metro-react-native-babel-preset'
|
|
],
|
|
plugins: [
|
|
'@babel/plugin-proposal-export-namespace-from',
|
|
'@babel/plugin-proposal-export-default-from'
|
|
]
|
|
};
|
|
};
|