babel.config.js (5589cdf32b2bb0f641e5ac7bf1f6152cd6b9b70e) | babel.config.js (6613e77203923e5b1742a49281bfa5de03fc1440) |
---|---|
1module.exports = { | 1module.exports = { |
2 presets: ['module:@react-native/babel-preset'], | 2 presets: ['babel-preset-expo'], |
3 plugins: [ 4 [ 5 'module-resolver', 6 { 7 root: ['./'], 8 alias: { 9 '^@/(.+)': './src/\\1', 10 }, 11 }, 12 ], 13 'react-native-reanimated/plugin', 14 ], 15 env: { 16 production: { 17 plugins: ['transform-remove-console'], 18 }, 19 }, 20}; | 3 plugins: [ 4 [ 5 'module-resolver', 6 { 7 root: ['./'], 8 alias: { 9 '^@/(.+)': './src/\\1', 10 }, 11 }, 12 ], 13 'react-native-reanimated/plugin', 14 ], 15 env: { 16 production: { 17 plugins: ['transform-remove-console'], 18 }, 19 }, 20}; |