I am using jspm install npm:cropper
which installs cropper and adds "cropper": "npm:cropper@^2.0.1" to package.json aslo i could find it under \jspm_packages\npm folder
But its not loading in network tab. any idea what am missing?
P.S:- I did not find the type definitions for cropper.js so i have declared the cropper like
declare var cropper: any;
declare module "cropper" {
export = cropper;
}
and imported it as import * as cropper from 'cropper'; which is not giving any error, but still no luck with cropper loading.