No description
  • TypeScript 66.2%
  • CSS 29.6%
  • HTML 4.2%
Find a file
2026-06-27 00:21:52 +02:00
public first commit 2026-06-26 09:19:05 +02:00
src Playing 2026-06-27 00:21:52 +02:00
.gitignore first commit 2026-06-26 09:19:05 +02:00
.oxlintrc.json first commit 2026-06-26 09:19:05 +02:00
index.html first commit 2026-06-26 09:19:05 +02:00
package.json first commit 2026-06-26 09:19:05 +02:00
pnpm-lock.yaml first commit 2026-06-26 09:19:05 +02:00
README.md first commit 2026-06-26 09:19:05 +02:00
tsconfig.app.json first commit 2026-06-26 09:19:05 +02:00
tsconfig.json first commit 2026-06-26 09:19:05 +02:00
tsconfig.node.json first commit 2026-06-26 09:19:05 +02:00
vite.config.ts first commit 2026-06-26 09:19:05 +02: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.