first commit

This commit is contained in:
NishantRajputRN
2026-04-16 15:23:13 +05:30
commit aa56e08ffd
523 changed files with 229267 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
module.exports = {
presets: ['module:@react-native/babel-preset'],
plugins: [
[
'babel-plugin-module-resolver',
{
root: ['./src'],
extensions: [
'.ios.js',
'.android.js',
'.js',
'.jsx',
'.ts',
'.tsx',
'.json',
],
alias: {
crypto: 'react-native-quick-crypto',
stream: 'readable-stream',
buffer: '@craftzdog/react-native-buffer',
},
},
],
[
'react-native-reanimated/plugin',
{
processNestedWorklets: true,
globals: ['__scanImage', '__labelImage'],
},
],
],
};