1. Adding jest test

```bash
yarn add -D jest ts-jest @types/jest
```

Add jest.config.js

2. Adding Eslint

```bash
# install dependencies
yarn add -D eslint @typescript-eslint/eslint-plugin @typescript-eslint/parser
# then we can follow this
# Choose TypeScript as an option.
./node_modules/.bin/eslint --init
```
