Skip to content

nandorojo/ts-monorepo-autoimport-guide

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

10 Commits
ย 
ย 

Repository files navigation

Tame VSCode autoimports in a TS monorepo ๐Ÿ•

Context ๐Ÿคทโ€โ™‚๏ธ

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.

Instructions โœ…

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)

Example ๐Ÿงฎ

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

Install or update a package ๐Ÿค–

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.

Open source libraries

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.

Confirm it worked ๐Ÿคตโ€โ™‚๏ธ

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.

Related ๐Ÿ“š

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.

About

A guide for making VSCode's autoimport work in a monorepo.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published