This is a template for building TypeScript React Applications.
Provided commands
# Build the application in development mode and serve over localhost
npm run dev
# Build the application in production mode and output to the "dist" folder
npm run build
# Run the built application from the dist folder over localhost
npm run preview
# Clean up generated files
npm run clean
# Run the tests once and generate a code coverage report
npm run test
# Run the tests in watch mode
npm run test:watch
# Check the code for linting errors
npm run lint
# Find and fix linting errors
npm run lint:fix
# Check the code for formatting errors
npm run format
# Find and fix formatting errors
npm run format:fix