I've got a project that needs to use a third-party custom library that was given for the project. How does one correctly use/integrate it? Do you have to import it to "package.json" like any other dependency?
"dependencies": {
"custom-lib": "^1.0.0",
// other deps
}
When I try to do so, it kind of works but its assets do not load for example (404 (Not Found))...Does one need to add some references in "angular.json" too? Describe the proper way of configuring this, please. Any advice is appreciated.
Edit: Plus when running npm install, the library disappears from node_modules