From b09c3731f993e227b3980eba304e7eb3191ad732 Mon Sep 17 00:00:00 2001 From: Developer Date: Thu, 5 Mar 2026 18:09:44 +0800 Subject: [PATCH] chore: add dev server config and update tsconfig - Add .claude/launch.json for Expo Dev Server (port 8081) - Update tsconfig.json with expo-router typedRoutes include paths --- .claude/launch.json | 11 +++++++++++ tsconfig.json | 8 +++++++- 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 .claude/launch.json diff --git a/.claude/launch.json b/.claude/launch.json new file mode 100644 index 0000000..5a651f9 --- /dev/null +++ b/.claude/launch.json @@ -0,0 +1,11 @@ +{ + "version": "0.0.1", + "configurations": [ + { + "name": "Expo Dev Server", + "runtimeExecutable": "node", + "runtimeArgs": ["C:\\nvm4w\\nodejs\\node_modules\\npm\\bin\\npm-cli.js", "run", "start"], + "port": 8081 + } + ] +} diff --git a/tsconfig.json b/tsconfig.json index b9567f6..bbcdac1 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,5 +2,11 @@ "extends": "expo/tsconfig.base", "compilerOptions": { "strict": true - } + }, + "include": [ + "**/*.ts", + "**/*.tsx", + ".expo/types/**/*.ts", + "expo-env.d.ts" + ] }