mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 14:53:24 +00:00
21 lines
463 B
JavaScript
21 lines
463 B
JavaScript
/** @type {import("@babel/core").ConfigFunction} */
|
|
module.exports = function (api) {
|
|
api.cache(true);
|
|
return {
|
|
presets: ["babel-preset-expo"],
|
|
plugins: [
|
|
"react-native-reanimated/plugin",
|
|
[
|
|
"module-resolver",
|
|
{
|
|
alias: {
|
|
crypto: "react-native-quick-crypto",
|
|
stream: "stream-browserify",
|
|
buffer: "@craftzdog/react-native-buffer",
|
|
},
|
|
},
|
|
],
|
|
],
|
|
};
|
|
};
|