My team works in a monorepo, with the source code all housed within /src. And we have a common directory where functions are stored that are shared across projects.
However, within vs code, I can't look up a definition of a function that is housed within a separate subdirectory in the monorepo.
Specifically everything within backend_amirainvest_com can be found. But nothing is found within common_amirainvest_com. Importantly, the code all runs. So there is no path error within the imports, etc
Additionally, while less important, I can't look up definitions from pypi packages either. For example, if I import BaseModel from pydantic, I can't look up the definition of BaseModel even though it's installed.
This whole thing stinks of a path error within VS Code's application somewhere, but I can't figure out where. I looked at this question but it didn't really help.
Any insight from anybody? It would make navigation between files much faster than having to click through all the folders manually to look up a single function/object