2020-06-16 17:51:51 +02:00
|
|
|
module.exports = {
|
2024-01-31 22:10:51 +01:00
|
|
|
presets: ['module:@react-native/babel-preset'],
|
2020-06-21 10:52:54 +02:00
|
|
|
plugins: [
|
|
|
|
|
[
|
|
|
|
|
'module-resolver',
|
|
|
|
|
{
|
2020-11-02 22:43:11 +01:00
|
|
|
root: ['.'],
|
|
|
|
|
extensions: [
|
|
|
|
|
'.ios.ts',
|
|
|
|
|
'.android.ts',
|
|
|
|
|
'.ts',
|
|
|
|
|
'.ios.tsx',
|
|
|
|
|
'.android.tsx',
|
|
|
|
|
'.tsx',
|
|
|
|
|
'.jsx',
|
|
|
|
|
'.js',
|
|
|
|
|
'.json',
|
|
|
|
|
],
|
2020-06-21 10:52:54 +02:00
|
|
|
alias: {
|
2023-06-19 23:03:17 +02:00
|
|
|
'@': './src',
|
2020-06-21 10:52:54 +02:00
|
|
|
}
|
|
|
|
|
}
|
2021-01-29 00:47:17 +01:00
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
'module:react-native-dotenv'
|
2022-05-05 03:30:51 +02:00
|
|
|
],
|
2022-11-27 21:07:32 +01:00
|
|
|
'react-native-reanimated/plugin',
|
|
|
|
|
'@babel/plugin-proposal-numeric-separator'
|
2020-06-21 10:52:54 +02:00
|
|
|
]
|
2020-06-16 17:51:51 +02:00
|
|
|
};
|