Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 328 Bytes

setup-yarn-with-ts.md

File metadata and controls

18 lines (14 loc) · 328 Bytes

Setup a Yarn Project with TypeScript in VS Code

# Install Yarn globally
npm install -g yarn

# Install Yarn for the project
yarn set version berry

# Install dependencies
yarn add -D typescript
yarn add -D ts-node
yarn add -D @types/node
yarn add -D @yarnpkg/pnpify

# Setup in VSCode
yarn dlx @yarnpkg/sdks vscode