Last active
June 6, 2024 01:25
-
-
Save colinhacks/27a77f6932793c0165b17565abf365db to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gh repo clone https://github.com/colinhacks/live-typescript-monorepo | |
cd live-typescript-monorepo | |
cd project-references | |
pnpm i | |
code . | |
# open packages/pkg-b/index.ts | |
# see Cannot find module 'pkg-a' or its corresponding type declarations | |
pnpm build # runs `tsc -b` | |
# restart ts server, "Cannot find module" goes away | |
pnpm clean # deletes node_modules in all packages | |
# error returns |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment