Skip to content

Latest commit

 

History

History
40 lines (28 loc) · 479 Bytes

README.md

File metadata and controls

40 lines (28 loc) · 479 Bytes

Typescript-seed

Seed project for typescript. Use this repository as a template for your typescript projects.

Getting Started

Install the dependencies:

npm install

Build the project:

npm run build

Run the project:

npm start

Test the project using Jest:

npm test
# To test and display the coverage
npm test:cov

Lint the project using ESLint:

npm run lint
# To fix the linting errors
npm run lint:fix