mirror of
https://github.com/Jellify-Music/App.git
synced 2026-02-22 11:48:35 -06:00
13 lines
326 B
JavaScript
13 lines
326 B
JavaScript
module.exports = {
|
|
presets: ['module:@react-native/babel-preset', "nativewind/babel"],
|
|
plugins: [// react-native-reanimated/plugin has to be listed last
|
|
'react-native-reanimated/plugin', ["module-resolver", {
|
|
root: ["./"],
|
|
extensions: [".js", ".ts", ".tsx", ".jsx"],
|
|
|
|
alias: {
|
|
"@": "./"
|
|
}
|
|
}]]
|
|
};
|