Anthony Skorupskyy
Anthony Skorupskyy
@flipvh Hi, thanks for responding. My IntelliSense performance on my project is effectively non-existent because the builds take forever and I am not even able to test my changes for...
@Rick-Phoenix yes, I do use `.omit()` and `.pick()` heavily. Not sure if the performance diff is indeed 10x but either way it should not affect the compile time of my...
Yes @Rick-Phoenix each `.procedure()` call in tRPC extends the type of the core app. Same thing as Hono. Thanks for sharing the benchmark! It looks like `ts-rest` supports `fetch` adapters...
This is years ahead... Still though amazing news, at least no need to worry for long-term scalability
@flipvh Tried zod/v4 – seems to be faster but very few things support it as of now, i.e. `prisma-zod-types`, `react-hook-form`, etc – all lacking support, so my entire ecosystem is...
```typescript function strictJSONResponse< C extends Context, S extends ZodSchema, U extends StatusCode >(c: C, schema: S, data: Parameters[0], statusCode: U) { const validatedResponse = schema.safeParse(data); if (!validatedResponse.success) { return c.json(...
@Rick-Phoenix yes just make your function async
+1 PR has resolved the issue for me