Mischa Spiegelmock
Mischa Spiegelmock
Or https://eips.ethereum.org/EIPS/eip-1155? Has both in one contract
Why let people make non typescript projects at all? Nobody should be doing this in 2021 imo.
> I would volunteer to help migrate this project to TypeScript Go for it! Give me typescript or give me death.
Would be happy to use prisma I just couldn't do the DISTINCT bit here ```ts const countCandidatesAddedToListPromise = this.prisma.$queryRaw< { ownerId: string count: number }[] >(Prisma.sql` SELECT "ownerId", COUNT(DISTINCT "candidateId")...
Also getting this error from `subscription-handshake-link.d.ts` ``` node_modules/aws-appsync-subscription-link/lib/subscription-handshake-link.d.ts:17:5 - error TS2416: Property 'request' in type 'SubscriptionHandshakeLink' is not assignable to the same property in base type 'ApolloLink'. Type '(operation: Operation)...
I've created a browser extension that requires users to log in to our service so that we can save their personal data. We use Cognito with OIDC and LinkedIn. It's...
That's exactly what I'm doing; sending creds via message to the service worker. I then need to tell the worker to save those credentials for itself.
I believe my problem is that I have ``` "types": ["vitest/globals"], ``` in my tsconfig.json I haven't figured out how to make it play nice with the generated type defs...
I posted a lot of notes on trying to figure this out on the SST discord: https://discord.com/channels/983865673656705025/1010706582205648970
If I do: ```ts "types": ["vitest/globals", "@types/serverless-stack__node"], // or "@types/serverless-stack__node/config" ``` Then I get errors when first building a project (like in CI) because the type defs aren't generated yet....