prisma-ecommerce icon indicating copy to clipboard operation
prisma-ecommerce copied to clipboard

Typescript Import issue

Open kanalasumant opened this issue 6 years ago • 0 comments

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'

kanalasumant avatar Feb 09 '18 22:02 kanalasumant