No description
  • TypeScript 76.6%
  • CSS 16.7%
  • Dockerfile 3.1%
  • JavaScript 2.1%
  • HTML 1.5%
Find a file
2026-06-27 06:17:16 +00:00
public Initiaize 2026-06-27 06:17:16 +00:00
src Initiaize 2026-06-27 06:17:16 +00:00
.gitignore Initiaize 2026-06-27 06:17:16 +00:00
.oxlintrc.json Initiaize 2026-06-27 06:17:16 +00:00
docker-compose.yml Initiaize 2026-06-27 06:17:16 +00:00
Dockerfile Initiaize 2026-06-27 06:17:16 +00:00
index.html Initiaize 2026-06-27 06:17:16 +00:00
nginx.conf Initiaize 2026-06-27 06:17:16 +00:00
package-lock.json Initiaize 2026-06-27 06:17:16 +00:00
package.json Initiaize 2026-06-27 06:17:16 +00:00
postcss.config.js Initiaize 2026-06-27 06:17:16 +00:00
README.md Initiaize 2026-06-27 06:17:16 +00:00
tailwind.config.js Initiaize 2026-06-27 06:17:16 +00:00
tsconfig.app.json Initiaize 2026-06-27 06:17:16 +00:00
tsconfig.json Initiaize 2026-06-27 06:17:16 +00:00
tsconfig.node.json Initiaize 2026-06-27 06:17:16 +00:00
vite.config.ts Initiaize 2026-06-27 06:17:16 +00:00

React + TypeScript + Vite

This template provides a minimal setup to get React working in Vite with HMR and some Oxlint rules.

Currently, two official plugins are available:

React Compiler

The React Compiler is not enabled on this template because of its impact on dev & build performances. To add it, see this documentation.

Expanding the Oxlint configuration

If you are developing a production application, we recommend enabling type-aware lint rules by installing oxlint-tsgolint and editing .oxlintrc.json:

{
  "$schema": "./node_modules/oxlint/configuration_schema.json",
  "plugins": ["react", "typescript", "oxc"],
  "options": {
    "typeAware": true
  },
  "rules": {
    "react/rules-of-hooks": "error",
    "react/only-export-components": ["warn", { "allowConstantExport": true }]
  }
}

See the Oxlint rules documentation for the full list of rules and categories.