mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-04-22 21:17:55 +00:00
23 lines
429 B
JavaScript
23 lines
429 B
JavaScript
module.exports = function (api) {
|
|
api.cache(true);
|
|
return {
|
|
presets: [
|
|
[
|
|
'babel-preset-expo',
|
|
{
|
|
unstable_transformImportMeta: true,
|
|
},
|
|
],
|
|
],
|
|
plugins: [
|
|
'@babel/plugin-transform-class-static-block',
|
|
['module:react-native-dotenv', {
|
|
moduleName: '@env',
|
|
path: '.env',
|
|
safe: false,
|
|
allowUndefined: true
|
|
}]
|
|
],
|
|
};
|
|
};
|