I am implementing an application using Ionic with Webpack and Typescript. I install 'ngstorage' via npm and try to import in the entry ts file, but Webpack shows an error - 'Cannot resolve module 'angular''.
I have searched about this error and realized that I need to include the angular in the package.json file and node_modules. However, ionic-sdk module already includes angular. So it instead shows an unacceptable error in the browser that I am trying to load angular more than once.
Does Webpack have ways to skip the module resolver or point to path of angular module to ionic-sdk module instead ? or are there any other suggested ways to import ?
Thank you.