I am able to create a library and install it into a angular cli generated app without issue. However, if I want to use the library in a new library and use the new library, I continue to receive the following error:
ERROR in Error: Error encountered resolving symbol values statically. Could not resolve first-library relative to /Users/second-library-use/node_modules/second-library/second-library.d.ts.,
Steps I took to create the above:
Create first angular library.
Change all references of sampleModule to firstModule, etc...
npm run build
Create second angular library.
Change all references of sampleModule to secondModule, etc...
npm install firstModule
Import firstModule & use.
npm run build
npm install secondModule into angular cli generated app.
I am able to create a library and install it into a angular cli generated app without issue. However, if I want to use the library in a new library and use the new library, I continue to receive the following error:
ERROR in Error: Error encountered resolving symbol values statically. Could not resolve first-library relative to /Users/second-library-use/node_modules/second-library/second-library.d.ts.,
Steps I took to create the above:
Error...
What am I missing?