16 lines
257 B
JavaScript
16 lines
257 B
JavaScript
module.exports = {
|
|
presets: ['module:@react-native/babel-preset'],
|
|
plugins: [
|
|
'react-native-reanimated/plugin',
|
|
[
|
|
'module-resolver',
|
|
{
|
|
root: ['./'],
|
|
alias: {
|
|
'@': './src',
|
|
},
|
|
},
|
|
],
|
|
],
|
|
};
|