Files
opencode/packages/mobile-voice/tsconfig.typecheck.json
Ryan Vogel abf79ae24c refactor mobile screen orchestration
Extract server/session and monitoring workflows into focused hooks so DictationScreen no longer owns every network and notification path. Add a dedicated mobile typecheck config so TypeScript checks pass without breaking Expo export resolution.
2026-03-30 08:57:35 -04:00

13 lines
345 B
JSON

{
"extends": "./tsconfig.json",
"compilerOptions": {
"paths": {
"@/*": ["./src/*"],
"@/assets/*": ["./assets/*"],
"react": ["./node_modules/@types/react"],
"react/jsx-runtime": ["./node_modules/@types/react/jsx-runtime"],
"react/jsx-dev-runtime": ["./node_modules/@types/react/jsx-dev-runtime"]
}
}
}