mirror of
https://github.com/khairul169/vaulterm.git
synced 2025-04-28 08:39:37 +07:00
21 lines
496 B
JavaScript
21 lines
496 B
JavaScript
module.exports = function (api) {
|
|
api.cache(true);
|
|
return {
|
|
presets: ["babel-preset-expo"],
|
|
plugins: [
|
|
[
|
|
"@tamagui/babel-plugin",
|
|
{
|
|
components: ["tamagui"],
|
|
config: "./tamagui.config.ts",
|
|
logTimings: true,
|
|
disableExtraction: process.env.NODE_ENV === "development",
|
|
},
|
|
],
|
|
|
|
// NOTE: this is only necessary if you are using reanimated for animations
|
|
"react-native-reanimated/plugin",
|
|
],
|
|
};
|
|
};
|