Philipp Giese
Philipp Giese
Does this ticket need renaming to "Support for prisma ^5.0.0"? :)
We had a similar issue. As a workaround we've added a custom script that creates a "bridge" in betwen `esm` and `cjs` code. ```ts import { mkdirSync, writeFileSync } from...
There is already a PR that fixes this: https://github.com/graphql-nexus/nexus-prisma/pull/985 "Just" needs to be merged :)
Hey @blackswanny , since we at Signavio believe in this library we want to continue developing it further. Therefore, we've forked it and will release it as `signavio-glamor`. It would...
@blackswanny this is the repo: https://github.com/signavio/glamor Do you have some more statistics?
Came here for exactly that. Some more of my context. I've defined a type: ```ts type A = string | null ``` I know that when I set `--strictNullCheck` I...
If need be I could also put together a PR for that.
Hey @mrcoles, thanks for the idea. I have to think about this some more :) Currently, `react-undo-redo` does not make **any** assumptions about how your actions look like. I.e., also...
Try this: ```ts const mockJestPrisma = jestPrisma jest.mock("./src/client", () => ({ prisma: mockJestPrisma.client, })) ``` When you mock a module this call is hoisted which means that locally declared variables...
I see a very similar error. The `s3Client` method returns `new S3Client` and fills in the AWS region. `Key` and `Bucket` are both strings. We're running on TS `5.0.4` right...