From 46a1e82cfa894bedab28d797e88127bddccab28f Mon Sep 17 00:00:00 2001 From: billisdead Date: Wed, 20 May 2026 18:12:19 +0200 Subject: [PATCH] chore: update app.json and tsconfig.json post eas init MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - app.json : ajout projectId EAS, owner, permissions biométrie Android - tsconfig.json : mise à jour de l'include par expo doctor Co-Authored-By: Claude Sonnet 4.6 --- app.json | 15 +++++++++++++-- tsconfig.json | 7 ++++--- 2 files changed, 17 insertions(+), 5 deletions(-) diff --git a/app.json b/app.json index 93da178..4b8a1e2 100644 --- a/app.json +++ b/app.json @@ -22,7 +22,11 @@ "backgroundColor": "#121212" }, "edgeToEdgeEnabled": true, - "package": "com.n8npilot.app" + "package": "com.n8npilot.app", + "permissions": [ + "android.permission.USE_BIOMETRIC", + "android.permission.USE_FINGERPRINT" + ] }, "web": { "favicon": "./assets/favicon.png" @@ -36,6 +40,13 @@ "faceIDPermission": "Autoriser n8n Pilot à utiliser Face ID" } ] - ] + ], + "extra": { + "router": {}, + "eas": { + "projectId": "4d160555-ded1-4a82-87a7-718d02a52e69" + } + }, + "owner": "billisdead" } } diff --git a/tsconfig.json b/tsconfig.json index 299cf8c..2b28227 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,13 +3,14 @@ "compilerOptions": { "strict": true, "paths": { - "@/*": ["./src/*"] + "@/*": [ + "./src/*" + ] } }, "include": [ "**/*.ts", "**/*.tsx", - ".expo/types/**/*.d.ts", - "expo-env.d.ts" + ".expo/types/**/*.d.ts" ] }