No description
Find a file
2026-08-07 13:22:15 +05:30
public Initial commit: React Vite TypeScript project 2026-08-07 13:12:14 +05:30
src Initial commit: React Vite TypeScript project 2026-08-07 13:12:14 +05:30
.gitignore Initial commit: React Vite TypeScript project 2026-08-07 13:12:14 +05:30
.oxlintrc.json Initial commit: React Vite TypeScript project 2026-08-07 13:12:14 +05:30
.woodpecker.yml feat: add Woodpecker CI pipeline configuration for build and deployment 2026-08-07 13:22:15 +05:30
index.html Initial commit: React Vite TypeScript project 2026-08-07 13:12:14 +05:30
package-lock.json Initial commit: React Vite TypeScript project 2026-08-07 13:12:14 +05:30
package.json Initial commit: React Vite TypeScript project 2026-08-07 13:12:14 +05:30
README.md Initial commit: React Vite TypeScript project 2026-08-07 13:12:14 +05:30
tsconfig.app.json Initial commit: React Vite TypeScript project 2026-08-07 13:12:14 +05:30
tsconfig.json Initial commit: React Vite TypeScript project 2026-08-07 13:12:14 +05:30
tsconfig.node.json Initial commit: React Vite TypeScript project 2026-08-07 13:12:14 +05:30
vite.config.ts Initial commit: React Vite TypeScript project 2026-08-07 13:12:14 +05:30

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.