mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-03 15:00:24 +00:00
7 lines
157 B
JavaScript
7 lines
157 B
JavaScript
module.exports = function (api) {
|
|
api.cache(true);
|
|
return {
|
|
presets: ['babel-preset-expo'],
|
|
plugins: ['react-native-reanimated/plugin'],
|
|
};
|
|
};
|