Initial commit

This commit is contained in:
Samandar Turgunboyev
2025-08-26 16:26:59 +05:00
commit fd95422447
318 changed files with 38301 additions and 0 deletions

37
babel.config.js Normal file
View File

@@ -0,0 +1,37 @@
module.exports = {
presets: ['module:@react-native/babel-preset'],
plugins: [
'react-native-reanimated/plugin',
'@babel/plugin-transform-export-namespace-from',
[
'module-resolver',
{
root: ['./src'],
extensions: ['.ios.js', '.android.js', '.js', '.ts', '.tsx', '.json'],
alias: {
components: './src/components',
assets: './src/assets',
api: './src/api',
helpers: './src/helpers',
icons: './src/assets/icons',
screens: './src/screens',
store: './src/store',
navigator: './src/navigators',
types: './src/types',
images: './src/assets/images',
constants: './src/constants',
layouts: './src/layouts',
},
},
],
[
'module:react-native-dotenv',
{
moduleName: '@env',
path: '.env',
safe: false,
allowUndefined: false,
},
],
],
};