uflaks
uflaks2w ago

no types generated?

I am trying to follow the simple quickstart (expo) for convex, and I am having issues with seemingly no types being generated for tasks. Everything else seems to be working fine, I see the tasks in my frontend. Anyone know what I am doing wrong here?
No description
2 Replies
Sorin
Sorin2w ago
1. check if
npx convex dev
npx convex dev
is running. this is watching the convex folder and generates the types 2. check where this si running for typescript errors. ts is checked before build and abd ts will block the watch build so you get no types basicall you should always have a terminal with npx convex dev running without errors also, I assumed you imported api from the proper place
uflaks
uflaksOP2w ago
I have had some issues with my typescript server today, so maybe something there then.. I've run convex dev many a times today. Import seems to be correct too, at least my lsp is happy import { api } from "@/convex/_generated/api"; This seems correct though, no? convex dev --verbose ✔ Provisioned a dev deployment and saved its name as CONVEX_DEPLOYMENT to .env.local [verbose] 2025-08-28T12:27:32.477Z Skipping convex/_generated/api.d.ts [verbose] 2025-08-28T12:27:32.478Z Skipping convex/_generated/api.js [verbose] 2025-08-28T12:27:32.478Z Skipping convex/_generated/dataModel.d.ts [verbose] 2025-08-28T12:27:32.478Z Skipping convex/_generated/server.d.ts [verbose] 2025-08-28T12:27:32.478Z Skipping convex/_generated/server.js [verbose] 2025-08-28T12:27:32.478Z Skipping non-JS file convex/sampleData.jsonl [verbose] 2025-08-28T12:27:32.478Z Preparing convex/tasks.ts Codegen finished. [verbose] 2025-08-28T12:27:32.489Z Skipping convex/_generated/api.d.ts [verbose] 2025-08-28T12:27:32.489Z Skipping convex/_generated/api.js [verbose] 2025-08-28T12:27:32.489Z Skipping convex/_generated/dataModel.d.ts [verbose] 2025-08-28T12:27:32.489Z Skipping convex/_generated/server.d.ts [verbose] 2025-08-28T12:27:32.489Z Skipping convex/_generated/server.js [verbose] 2025-08-28T12:27:32.489Z Skipping non-JS file convex/sampleData.jsonl [verbose] 2025-08-28T12:27:32.489Z Preparing convex/tasks.ts Convex's runtime modules: [ 'tasks.js' ]

Did you find this page helpful?