I am getting error “Cannot find module ‘jwt-decode’ or its corresponding type declarations.”
But I imported the jwt_decode
like this:
import * as jwt_decode from 'jwt-decode';
And installed jwt_decode using these commands:
npm install –save @types/jwt-decode
npm install –save jwt-decode
But it isn’t working.
Do I need to add something in app.module.ts?
New contributor
Nikolina Stojčić is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.