here is my use case: I have two types of packages that I put in two folders, namely foo and bar, that each contain many packages. The foo packages do not contain any shared code and will never be referred to by other packages, though the foo packages will often refer to the packages within bar, where shared libs exist. Is there a way to avoid packages from foo being added as references in the base tsconfig?
Hello,
here is my use case: I have two types of packages that I put in two folders, namely
foo
andbar
, that each contain many packages. Thefoo
packages do not contain any shared code and will never be referred to by other packages, though thefoo
packages will often refer to the packages withinbar
, where shared libs exist. Is there a way to avoid packages fromfoo
being added as references in the base tsconfig?