I installed uuid with npm i uuid
and tried to import using import { v4 as uuidv4 } from 'uuid'; as per the instructions. I checked the node_modules folder and uuid is there. But I'm getting an error Could not find a declaration file for module 'uuid'. and uuid/dist/index.js' implicitly has an 'any' type. any idea? thx
Install @types/uuid as dev dependency. somehow that fixes the issue idk.
npm i --save-dev @types/uuid