d538c0879d
Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com>
19 lines
317 B
JavaScript
19 lines
317 B
JavaScript
module.exports = function (api) {
|
|
api.cache(true);
|
|
return {
|
|
presets: ["babel-preset-expo"],
|
|
plugins: [
|
|
[
|
|
"module-resolver",
|
|
{
|
|
root: ["./"],
|
|
alias: {
|
|
"@": "./src",
|
|
},
|
|
},
|
|
],
|
|
"react-native-reanimated/plugin",
|
|
],
|
|
};
|
|
};
|