Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/flolu/stackoverflow-lerna-monorepo-vscode-intellisense

Lerna Monorepo Example for StackOverflow Question by @Undistraction
https://github.com/flolu/stackoverflow-lerna-monorepo-vscode-intellisense

intellisense javascript lerna monorepo vs-code yarn yarn-workspaces

Last synced: 3 months ago
JSON representation

Lerna Monorepo Example for StackOverflow Question by @Undistraction

Awesome Lists containing this project

README

        

# Javascript Monorepo with Lerna on VSCode

This repository is an example for [this](https://stackoverflow.com/questions/57870542/how-should-vscode-be-configured-to-support-a-lerna-monorepo) 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](intellisense.gif)

## 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
```