Skip to content

Latest commit

 

History

History
75 lines (55 loc) · 2.19 KB

README.md

File metadata and controls

75 lines (55 loc) · 2.19 KB

DengueChatPlus

Web project for DengueChat

Base project having:

  • React
  • TypeScript
  • Vite
  • Vitest
  • Tailwind CSS
  • Eslint
  • Prettier
  • Commitlint
  • Husky
  • Absolute Imports

Install

This project uses node and a package manager (npm, yarn or pnpm).

Use your package manager to install dependecies:

$ yarn install

# or
# npm install
# pnpm install

Usage

Run in development mode

$ yarn dev

# or
# npm run dev
# pnpm run dev

Available commands

In this project, you can run the following scripts:

Script Description
dev Runs the app in the development mode.
build Builds the app for production to the dist folder.
lint Runs the Eslint and show code problems
format Runs the Prettier and fix code style
preview Builds the app for production to the dist folder, and run locally server.
test Run the app tests.
test:watch Run the app tests in watch mode.

About the absolute imports

Absolute imports with @/ are configured in these files:

  • vite.config.ts
  • tsconfig.json

Related Docs