Justin Smid
Justin Smid
### Describe the bug When calling `faker.lorem.word` with a length that doesn't have any matching words, it will return `undefined` while TypeScript thinks it's a `string`. ### Reproduction ```ts const...
## Problem I have various situations where I throw a particular error when some entity is not found, either for clearer debug output (like logging the id that wasn't found),...
It seems that `z.omit` and `z.pick` allow any keys to be omitted/picked, as long as **one** of the omitted/picked keys **is** in the object. ```ts import { z } from...
I'm trying out tsgo on my large work codebase and found it errors on a pattern we use very often that does pass `tsc`: ```ts import type { ComponentType, JSX...
tsgo "Type instantiation is excessively deep and possibly infinite" error when using react-hook-form
My project makes heavy use of [`react-hook-form`](https://github.com/react-hook-form/react-hook-form). A quick `git grep` tells me we have 310 forms. On two of them we are getting the "Type instantiation is excessively deep...