TypeScript's VSCode plugin doesn't use transitive dependencies for autoimport.
This means that, in a given subpackage, you have to list all the dependencies you want it to be able to autoimport.
That is, TypeScript will look in your package.json
, not your node_modules
folder to know what to autoimport.
Below is a workflow that manages this for you with ease, without having clashing versions or trouble installing.
First, install lerna-update-wizard
. Don't be fooled by the name. You don't need lerna for it. This package will let you install a single NPM package across multiple monorepo packages, while maintaining the same version. This ensures that you get autocomplete wherever you need it, without struggling with mismatched versions.
yarn add -D -W lerna-update-wizard
This setup assumes we have a layout like this:
packages/
apps/
Your package.json
in the root of your monorepo should have workspaces
:
{
"workspaces": ["packages/*", "apps/*"]
}
You can also add a convenience plus
/p
script to your root package.json
to install packages:
{
"workspaces": ["packages/*", "apps/*"],
"scripts": { "plus": "yarn lernaupdate --lazy", "p": "yarn lernaupdate --lazy" }
}
And use it like so:
yarn plus
# wait for the prompt to ask you which package(s)
Say you want to install solito
in both packages/app
and apps/next
. Do this:
yarn plus
# search solito click enter
# select the app folder and the next-app folder
# mark them both as dependencies
Instead of yarn add
inside of packages, use yarn lernaupdate
at the root of your repo. This will be more efficient too, since it only needs to run yarn install
once under the hood.
Then, type the package you want to install/update.
When it asks you which packages you want to put it in, check each one.
Select whether the item is a dependency
or devDependency
. You should set the same one for each package you add it to.
If your monorepo is for an open source library, you might not want to make the dependency a devDependency. So you should know what kind of dependency it is. But if you're just using a monorepo for an internal app for organization purposes, devDependency
should be fine.
Say you just installed dripsy
at ^3.5.3
.
yarn why dripsy
This should give you ^3.5.3
, hoisted by each package you installed it in. But there shouldn't be any duplicates.
Now, open a file in one of your subpackages. You should be able to autoimport from dripsy
.
I found this solution after asking a question here: microsoft/TypeScript#38923 (comment)
Thanks to @andrewbranch for helping me understand how TS deals with transitive dependencies.