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