feat: Expo mobile app scaffold (118-file structure)

This commit is contained in:
Yossi Elkrief
2026-03-02 12:42:45 +02:00
parent 08a6d5a7f1
commit b2fdc6282d
123 changed files with 16699 additions and 0 deletions

8
mobile/jest.config.js Normal file
View File

@@ -0,0 +1,8 @@
module.exports = {
preset: 'jest-expo',
setupFilesAfterEnv: ['<rootDir>/jest.setup.ts'],
testPathIgnorePatterns: ['/src/__tests__/'],
transformIgnorePatterns: [
'node_modules/(?!(expo|expo-.+|react-native|@react-native|react-native-webview|react-native-reanimated|react-native-svg|react-native-safe-area-context|react-native-screens|@react-navigation|@expo|@unimodules|expo-modules-core)/)',
],
};