prisma-ecommerce
prisma-ecommerce copied to clipboard
Typescript Import issue
Hey Ben, could you label this issue as an enhancement. I'm gonna remove this line.
In episode 7, the following import didn't work:
import shortid from 'shortid'
probably due to module resolution is implemented in Typescript. Refer here.
Do this instead:
import * as shortid from 'shortid'