mirror of
https://github.com/selfxyz/self.git
synced 2026-04-05 03:00:53 -04:00
15 lines
352 B
JavaScript
15 lines
352 B
JavaScript
module.exports = {
|
|
presets: ['module:@react-native/babel-preset'],
|
|
plugins: [
|
|
["@babel/plugin-transform-private-methods", { "loose": true }],
|
|
["module:react-native-dotenv", {
|
|
"moduleName": "@env",
|
|
"path": ".env",
|
|
"blacklist": null,
|
|
"whitelist": null,
|
|
"safe": false,
|
|
"allowUndefined": true
|
|
}]
|
|
],
|
|
};
|