Working on an Angular 4 project, I recently installed two external JS libraries using npm. They are now in the node_modules folder and usable in another TS file within my project. The issue arises because import B requires import A, preventing me from effectively using them together in a single TS file.
Does anyone have a solution to this problem?
I attempted importing both files in the same TS file with no success.
Thank you for any assistance!