mirror of
https://github.com/EthanShoeDev/fressh.git
synced 2026-01-11 14:22:51 +00:00
harden ts configs
This commit is contained in:
65
apps/mobile/app.config.ts
Normal file
65
apps/mobile/app.config.ts
Normal file
@@ -0,0 +1,65 @@
|
|||||||
|
import 'tsx/cjs'; // Add this to import TypeScript files
|
||||||
|
import { type ExpoConfig } from 'expo/config';
|
||||||
|
import packageJson from './package.json';
|
||||||
|
|
||||||
|
const config: ExpoConfig = {
|
||||||
|
name: 'fressh',
|
||||||
|
slug: 'fressh',
|
||||||
|
version: packageJson.version,
|
||||||
|
orientation: 'portrait',
|
||||||
|
icon: './assets/images/icon.png',
|
||||||
|
scheme: 'fressh',
|
||||||
|
userInterfaceStyle: 'automatic',
|
||||||
|
newArchEnabled: true,
|
||||||
|
ios: {
|
||||||
|
supportsTablet: true,
|
||||||
|
config: {
|
||||||
|
usesNonExemptEncryption: false,
|
||||||
|
},
|
||||||
|
bundleIdentifier: 'dev.fressh.app',
|
||||||
|
},
|
||||||
|
android: {
|
||||||
|
package: 'dev.fressh.app',
|
||||||
|
adaptiveIcon: {
|
||||||
|
foregroundImage: './assets/images/adaptive-icon.png',
|
||||||
|
backgroundColor: '#ffffff',
|
||||||
|
},
|
||||||
|
edgeToEdgeEnabled: true,
|
||||||
|
predictiveBackGestureEnabled: false,
|
||||||
|
},
|
||||||
|
web: {
|
||||||
|
output: 'static',
|
||||||
|
favicon: './assets/images/favicon.png',
|
||||||
|
},
|
||||||
|
plugins: [
|
||||||
|
'expo-router',
|
||||||
|
[
|
||||||
|
'expo-splash-screen',
|
||||||
|
{
|
||||||
|
image: './assets/images/splash-icon.png',
|
||||||
|
imageWidth: 200,
|
||||||
|
resizeMode: 'contain',
|
||||||
|
backgroundColor: '#ffffff',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
'expo-secure-store',
|
||||||
|
'expo-font',
|
||||||
|
'expo-web-browser',
|
||||||
|
[
|
||||||
|
'expo-build-properties',
|
||||||
|
{
|
||||||
|
android: {
|
||||||
|
packagingOptions: {
|
||||||
|
pickFirst: ['META-INF/versions/9/OSGI-INF/MANIFEST.MF'],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
],
|
||||||
|
experiments: {
|
||||||
|
typedRoutes: true,
|
||||||
|
reactCompiler: true,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export default config;
|
||||||
@@ -1,61 +0,0 @@
|
|||||||
{
|
|
||||||
"expo": {
|
|
||||||
"name": "fressh",
|
|
||||||
"slug": "fressh",
|
|
||||||
"version": "1.0.0",
|
|
||||||
"orientation": "portrait",
|
|
||||||
"icon": "./assets/images/icon.png",
|
|
||||||
"scheme": "fressh",
|
|
||||||
"userInterfaceStyle": "automatic",
|
|
||||||
"newArchEnabled": true,
|
|
||||||
"ios": {
|
|
||||||
"supportsTablet": true,
|
|
||||||
"config": {
|
|
||||||
"usesNonExemptEncryption": false
|
|
||||||
},
|
|
||||||
"bundleIdentifier": "dev.fressh.app"
|
|
||||||
},
|
|
||||||
"android": {
|
|
||||||
"package": "dev.fressh.app",
|
|
||||||
"adaptiveIcon": {
|
|
||||||
"foregroundImage": "./assets/images/adaptive-icon.png",
|
|
||||||
"backgroundColor": "#ffffff"
|
|
||||||
},
|
|
||||||
"edgeToEdgeEnabled": true,
|
|
||||||
"predictiveBackGestureEnabled": false
|
|
||||||
},
|
|
||||||
"web": {
|
|
||||||
"output": "static",
|
|
||||||
"favicon": "./assets/images/favicon.png"
|
|
||||||
},
|
|
||||||
"plugins": [
|
|
||||||
"expo-router",
|
|
||||||
[
|
|
||||||
"expo-splash-screen",
|
|
||||||
{
|
|
||||||
"image": "./assets/images/splash-icon.png",
|
|
||||||
"imageWidth": 200,
|
|
||||||
"resizeMode": "contain",
|
|
||||||
"backgroundColor": "#ffffff"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"expo-secure-store",
|
|
||||||
"expo-font",
|
|
||||||
"expo-web-browser",
|
|
||||||
[
|
|
||||||
"expo-build-properties",
|
|
||||||
{
|
|
||||||
"android": {
|
|
||||||
"packagingOptions": {
|
|
||||||
"pickFirst": ["META-INF/versions/9/OSGI-INF/MANIFEST.MF"]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"experiments": {
|
|
||||||
"typedRoutes": true,
|
|
||||||
"reactCompiler": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -2,8 +2,17 @@
|
|||||||
"extends": "expo/tsconfig.base",
|
"extends": "expo/tsconfig.base",
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"strict": true,
|
"strict": true,
|
||||||
|
"noUnusedLocals": true,
|
||||||
|
"noUnusedParameters": true,
|
||||||
|
"noFallthroughCasesInSwitch": true,
|
||||||
|
"noUncheckedIndexedAccess": true,
|
||||||
|
"verbatimModuleSyntax": true,
|
||||||
|
"noImplicitOverride": true,
|
||||||
|
"allowJs": true,
|
||||||
|
"strictNullChecks": true,
|
||||||
|
"baseUrl": ".",
|
||||||
"paths": {
|
"paths": {
|
||||||
"@/*": ["./*"]
|
"@/*": ["src/*"]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"include": [
|
"include": [
|
||||||
|
|||||||
Reference in New Issue
Block a user