railbird-gql/babel.config.js

16 lines
383 B
JavaScript
Raw Normal View History

module.exports = function(api) {
2024-01-05 19:19:45 -07:00
api.cache(true);
return {
presets: ["babel-preset-expo"],
2024-01-05 19:50:07 -07:00
plugins: [
["module:react-native-dotenv", {
"moduleName": "@env",
"path": ".env",
"safe": false,
"allowUndefined": true,
"verbose": false,
}],
],
2024-01-05 19:19:45 -07:00
};
};