Seed project for typescript. Use this repository as a template for your typescript projects.
This project uses pnpm as the package manager. If you don't have pnpm installed, you can install it using one of the following methods:
npm install -g pnpm
For other installation methods, visit: https://pnpm.io/installation
Install the dependencies:
pnpm install
Build the project:
pnpm run build
Run the project:
pnpm start
Test the project using Jest:
pnpm test
# To test and display the coverage
pnpm test:cov
Lint the project using ESLint:
pnpm run lint
# To fix the linting errors
pnpm run lint:fix