Bootstrap code for a project in Typescript.
- TypeScript (v5)
- ESLint with Codely's config (includes ESLint's recommended rules, Prettier, Import plugin and more)
- Jest
- GitHub Action workflows set up to run tests and linting on push
- SWC: Execute your tests in less than 200ms
- Install the dependencies:
npm install - Execute the tests:
npm run test - Check linter errors:
npm run lint - Fix linter errors:
npm run lint:fix