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
This commit is contained in:
Developer
2026-03-05 18:09:44 +08:00
parent a0e53bd073
commit b09c3731f9
2 changed files with 18 additions and 1 deletions

11
.claude/launch.json Normal file
View File

@@ -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
}
]
}

View File

@@ -2,5 +2,11 @@
"extends": "expo/tsconfig.base",
"compilerOptions": {
"strict": true
}
},
"include": [
"**/*.ts",
"**/*.tsx",
".expo/types/**/*.ts",
"expo-env.d.ts"
]
}