Mat Warger

Results 29 comments of Mat Warger

I'm having this same issue using a very basic reproduction using yarn workspaces example - https://github.com/mwarger/yarn-workspace-hooks-repro I have a `component-library` that is written in typescript and bundled with parcel. The...

Just trying to help out - this is closed by https://github.com/trpc/trpc/pull/2313

I have the same issue and was able to work around it for now by explicitly returning `:any` from the child element. ```javascript const StyledCheckbox: any = styled.input(({ theme })...

@Weakky I ran into this issue when doing this tutorial - https://dev.to/prisma/complete-introduction-to-fullstack-type-safe-graphql-feat-next-js-nexus-prisma-c5 The code for that tutorial is here on `@nexus/schema` 17.0 - the latest is 19.1, so it at...

@AbigailMcP I managed to get this working (for expo for web) after adding cavy to the list of modules that you mentioned in the custom webpack config. Transpiling as above...

Yes, i will get an example put up. Also, the simpler way to do this might just be to change the index.js export and see if that doesn't happen to...

I haven't yet - I had other priorities. Thanks for the ping though, I'll look at doing this again soon.

Something additional to consider: not all schemas use `ID` as the type for ID (Hasura, for example, could have a `uuid` as the ID type).

The alternative workaround is to override the ID field in the props by extending the MST definition in the generated file. You can replace the ID field with one that...