application-amicale/babel.config.js

12 lines
223 B
JavaScript
Raw Normal View History

2019-06-25 22:16:14 +02:00
module.exports = function(api) {
api.cache(true);
return {
presets: ['babel-preset-expo', '@babel/preset-flow'],
2020-02-05 10:25:19 +01:00
env: {
production: {
plugins: ['react-native-paper/babel'],
},
},
2019-06-25 22:16:14 +02:00
};
};