Skip to content

flolu/stackoverflow-lerna-monorepo-vscode-intellisense

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Javascript Monorepo with Lerna on VSCode

This repository is an example for this StackOverflow question

The monorepo makes use of a combination of lerna and yarn workspaces. You can find more information on this topic here: https://youtu.be/EoqzOEZIzhg.

Requirements

  • yarn

Setup

yarn boostrap

Intellisense Preview

Preview

File tree

├── lerna.json
├── package.json
├── packages
│   ├── components
│   │   ├── package.json
│   │   └── src
│   │       ├── component1.js
│   │       └── index.js
│   └── website
│       ├── package.json
│       └── src
│           └── index.js
├── README.md
└── yarn.lock