I am trying to use JQuery timepicker control (https://timepicker.co/) as an npm package
After installing it using "npm i jquery-timepicker"
I tried to import it to js page as shown below
import { TimePicker } from 'jquery-timepicker';
However I am getting error as shown in the following pictures when I execute the npm run build command
But I can see that, "jquery-timepicker" folder is created in the node_modules folder and Package.json file is updated as well
"jquery-timepicker": "^1.3.3",
My doubt is whether I am importing it correctly or not.
There are other libraries in the same project I use without a issue(i.e. DateRangePicker)