15 lines
227 B
JavaScript
15 lines
227 B
JavaScript
module.exports = {
|
|
presets: ['module:@react-native/babel-preset'],
|
|
plugins: [
|
|
[
|
|
'module-resolver',
|
|
{
|
|
root: ['./'],
|
|
alias: {
|
|
'@config': './app/config'
|
|
}
|
|
}
|
|
]
|
|
]
|
|
};
|