I have been learning Nx Monorepo for a couple of months.
My Nx repo has two TypeScript React apps in it: App A and App B.
When I try to serve App A in via VS Code Nx extension. It fails to compile due to a project library that only App B depends on.
I have verified with project dependency graph that App A does not depend on that project.
Both apps use to work. But I made a change to a project which has Type definitions and I only want to test that change in App A without having to fix App B.
Seems like Nx should check that the App does not need that project to serve App A.
Any ideas on how to make that the case.