Skip to content

Latest commit

 

History

History
59 lines (43 loc) · 655 Bytes

README.md

File metadata and controls

59 lines (43 loc) · 655 Bytes

Vite/React/Typescript Starter

A starter repository with the following libraries set up and included:

  • Vite
  • React
  • Typescript
  • Eslint
  • Prettier
  • @emotion/react
  • @emotion/styled
  • msw
  • @reduxjs/toolkit
  • react-redux
  • @mui/material
  • notistack
  • vitest
  • @testing-library/react

Usage

Run in development mode

Running in development mode will re-compile and hot-reload on changes.

yarn dev

Run in production mode

yarn build
yarn serve

Run tests

yarn test

In watch mode:

yarn test-watch

Run type checking

yarn typecheck

Run linting

yarn lint