mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-06 07:06:11 +00:00
# Summary Due to the large number of example apps in the repository, I decided to change the structure and move all applications into an "apps" folder to maintain a clear structure.
16 lines
356 B
JavaScript
16 lines
356 B
JavaScript
module.exports = {
|
|
presets: ['module:metro-react-native-babel-preset'],
|
|
plugins: [
|
|
[
|
|
'module-resolver',
|
|
{
|
|
extensions: ['.js', '.ts', '.tsx'],
|
|
alias: {
|
|
'react-native': './node_modules/react-native-macos',
|
|
},
|
|
},
|
|
],
|
|
['react-native-reanimated/plugin', {processNestedWorklets: true}],
|
|
],
|
|
};
|