UNPKG

create-nova-expo-template

Version:

A template for creating a new React Native app using Expo and TypeScript, with a focus on performance and best practices.

53 lines (52 loc) 1.73 kB
{ "expo": { "name": "<%= projectName %>", "slug": "<%= projectName %>", "version": "1.0.0", "orientation": "portrait", "icon": "./assets/images/nova-black.png", "scheme": "myapp", "userInterfaceStyle": "automatic", "newArchEnabled": true, "ios": { "supportsTablet": true, "userInterfaceStyle": "automatic", "infoPlist": { "NSCameraUsageDescription": "This app uses the camera to take photos.", "NSPhotoLibraryUsageDescription": "This app uses the photo library to select photos.", "NSMicrophoneUsageDescription": "This app uses the microphone to record audio.", "NSLocationWhenInUseUsageDescription": "This app uses location services to provide information about your current location.", "NSLocationAlwaysUsageDescription": "This app uses location services to provide information about your current location.", "NSLocationAlwaysAndWhenInUseUsageDescription": "This app uses location services to provide information about your current location." } }, "android": { "adaptiveIcon": { "foregroundImage": "./assets/images/adaptive-icon.png", "backgroundColor": "#ffffff" }, "userInterfaceStyle": "automatic" }, "web": { "bundler": "metro", "output": "static", "favicon": "./assets/images/favicon.png" }, "plugins": [ "expo-router", [ "expo-splash-screen", { "image": "./assets/images/nova-black.png", "imageWidth": 200, "resizeMode": "contain", "backgroundColor": "#ffffff" } ], "expo-localization" ], "experiments": { "typedRoutes": true } } }