diff --git a/mobile/app.json b/mobile/app.json index 419f7945..b6f050c8 100644 --- a/mobile/app.json +++ b/mobile/app.json @@ -11,7 +11,9 @@ "resizeMode": "contain", "backgroundColor": "#1e40af" }, - "assetBundlePatterns": ["**/*"], + "assetBundlePatterns": [ + "**/*" + ], "ios": { "supportsTablet": true, "bundleIdentifier": "org.docuelevate.mobile", @@ -20,6 +22,7 @@ "NSCameraUsageDescription": "DocuElevate uses the camera to capture documents for upload.", "NSPhotoLibraryUsageDescription": "DocuElevate accesses your photo library to select documents for upload.", "NSPhotoLibraryAddUsageDescription": "DocuElevate saves scanned documents to your photo library.", +<<<<<<< Updated upstream "UIBackgroundModes": ["fetch", "remote-notification"], "ITSAppUsesNonExemptEncryption": false, "LSSupportsOpeningDocumentsInPlace": true, @@ -45,6 +48,15 @@ ] }, "buildNumber": "7" +======= + "UIBackgroundModes": [ + "fetch", + "remote-notification" + ], + "ITSAppUsesNonExemptEncryption": false + }, + "buildNumber": "6" +>>>>>>> Stashed changes }, "android": { "adaptiveIcon": { @@ -93,7 +105,13 @@ { "icon": "./assets/notification-icon.png", "color": "#1e40af", +<<<<<<< Updated upstream "sounds": ["./assets/notification_sound.wav"] +======= + "sounds": [ + "./assets/notification-sound.wav" + ] +>>>>>>> Stashed changes } ], [ diff --git a/mobile/tsconfig.json b/mobile/tsconfig.json index 20e4176b..7ba747ac 100644 --- a/mobile/tsconfig.json +++ b/mobile/tsconfig.json @@ -1,7 +1,9 @@ { "compilerOptions": { "target": "ESNext", - "lib": ["ESNext"], + "lib": [ + "ESNext" + ], "module": "ESNext", "moduleResolution": "node", "strict": true, @@ -9,10 +11,18 @@ "skipLibCheck": true, "jsx": "react-native", "paths": { - "@/*": ["./src/*"] + "@/*": [ + "./src/*" + ] }, "baseUrl": "." }, - "include": ["**/*.ts", "**/*.tsx"], - "exclude": ["node_modules"] + "include": [ + "**/*.ts", + "**/*.tsx" + ], + "exclude": [ + "node_modules" + ], + "extends": "expo/tsconfig.base" }