Seeking assistance with integrating angular-jwt with typescript in my angular1 project. The angular-jwt package was installed using the following command:
typings install dt~angular-jwt --global
The package is located in typings>globals>angular-jwt, but it does not appear in the typings.json file. Could this be causing an issue?
Encountering an error message that says: Module ngJwtAuth
is not available! when attempting to use it as a dependency.
import * as angular from 'angular';
import 'angular-jwt';
angular.module('app', ['ngJwtAuth']);
Any suggestions on how to resolve this issue?