mirror of
https://github.com/fergalmoran/argon-react-native.git
synced 2025-12-22 09:19:26 +00:00
16 lines
290 B
JavaScript
16 lines
290 B
JavaScript
module.exports = function (api) {
|
|
api.cache(true);
|
|
return {
|
|
presets: ["babel-preset-expo"],
|
|
plugins: [
|
|
[
|
|
"module-resolver",
|
|
{
|
|
extensions: [".tsx", ".ts", ".js", ".json"],
|
|
},
|
|
],
|
|
"react-native-reanimated/plugin",
|
|
],
|
|
};
|
|
};
|