Because the name of the module being export in index.js isn't the same name as the angular module name used in the source files, it's not possible to import ngTimerpicker through the index.js file
import ngTimepicker from `ngTimepicker`;
angular.module('some_project', [ngTimepicker]);
The code above won't work unless index.js file is exporting the name jkuri.timepicker.
Because the name of the module being export in
index.jsisn't the same name as the angular module name used in the source files, it's not possible to import ngTimerpicker through theindex.jsfileThe code above won't work unless
index.jsfile is exporting the namejkuri.timepicker.