Pedr Browne

Results 115 comments of Pedr Browne

Any chance of getting this into V3? I think this is quite a common use-case.

@veritem I'll get that done this week.

@veritem looking at `jest-eslint` they have a rule for one side of this: [prefer-importing-jest-globals](https://github.com/jest-community/eslint-plugin-jest/blob/HEAD/docs/rules/prefer-importing-jest-globals.md), but not the other, meaning they have a rule to enforce the presence of jest globals,...

Seeing something similar: ``` "is_primary": { "type": "boolean", "title": "Is Primary", "default": false } ``` Becomes: ``` is_primary: z.union([z.boolean(), z.undefined()]).optional(), ``` Expected: ``` is_primary: z.boolean() ``` If a schema type...

Still broken when using [Next.js app router instructions](https://github.com/aidenybai/react-scan/blob/main/docs/installation/next-js-app-router.md). - next: `15.5.6` - react-scan: `0.4.3` - node: `22.17.1` Script-tag solution works fine.