In a monorepo setup using npm workspaces, how do you reference a local TypeScript package from another workspace package?
-
A
Using a relative `../../` import path directly
-
B
Listing it as a dependency with its package name and using TypeScript project references
-
C
Copying `.d.ts` files manually between packages
-
D
Using `require()` with an absolute path