mirror of
https://github.com/selfxyz/self.git
synced 2026-01-09 14:48:06 -05:00
This commit is a first pass of lint and fmt, with a few manual fixes. Only manual issues left to do.
18 lines
373 B
JavaScript
18 lines
373 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,
|
|
},
|
|
],
|
|
],
|
|
};
|