mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-21 06:59:17 -04:00
11 lines
253 B
JavaScript
11 lines
253 B
JavaScript
module.exports = function (api) {
|
|
api.cache(true);
|
|
return {
|
|
presets: [["babel-preset-expo", { jsxImportSource: "nativewind" }]],
|
|
plugins: [
|
|
["@babel/plugin-transform-runtime", { helpers: true }],
|
|
"react-native-reanimated/plugin"
|
|
],
|
|
};
|
|
};
|