Justin Smid

Results 5 issues of 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...

c: bug
m: lorem

## 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),...

kind/feature
topic: error
team/client
topic: rejectOnNotFound / *OrThrow

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...

stale

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...

bug

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...