Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 614 Bytes

CONTRIBUTTING.md

File metadata and controls

40 lines (27 loc) · 614 Bytes

Environment set up

Kindly install ts-node in your VS code command line:

npm install typescript
npm install -g ts-node

Install all the necessary dependencies using:

npm install -g

Static Analysis tools

We have helps form ESLint and Prettier before every commit but if you want to run it manually, you can use

npm run lint
npm run prettier

Testing

Test is available to run by simply running

npm test

// Testing seperate modules
npm test module_name

To collect testing coverage

npm run coverage