Files
self/app/babel.config.js
thomas-senechal 126711d326 First lint and fmt pass
This commit is a first pass of lint and fmt, with a few manual fixes. Only manual issues left to do.
2025-01-06 18:54:46 +01:00

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,
},
],
],
};