in my multi-project workspace project I find that angular libraries in a subfolder (libs) with sub-entries cannot be build by the compiler. My project structure ist like this:
hero-project
projects
hero-app -> works fine
ironman -> works fine
libs
shared -> failed
for a better understanding checkout the project at github. i added some sub-entries with public-api.ts index.ts and package.json files etc., but the build failed all the times.
ng build ironman -> (works)
ng build @libs/shared -> (failed with "Entry point @libs/shared/src/lib/feature-a which is required by @libs/shared doesn't exists.")
Does anyone have an idea? Are any pathes wrong or maybe it's totally not possible to use a subfolder? And why its possible to ng serve the hero-app with ref to @libs/shared, but ng build @libs/shared fails?