Scripts
Project commands defined in package.json:
{
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview"
}Commands
| Script | Description |
|---|---|
dev | Starts the Vite development server at http://localhost:5173. |
build | Type-checks the project and builds a production bundle into /dist. |
preview | Serves the built /dist folder locally to verify the production output. |
lint | Runs ESLint across all .ts and .tsx files to ensure code consistency. |
Last updated on