Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 469 Bytes

README.md

File metadata and controls

19 lines (12 loc) · 469 Bytes

TypeScript Workshop

Installation

  1. Clone this repository with git clone https://github.com/codecentric/typescript-workshop.git
  2. Change into the directory with cd typescript-workshop
  3. Install dependencies with npm ci

Check code quality

  1. Run npm run check

This will run the following tools:

  • prettier to check code formatting
  • eslint to check code quality
  • tsc to check TypeScript type errors
  1. Run npm run test to run the tests