Go to file
Claude 500a0373ce Gitignore debug audio and offset comparison outputs
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-14 23:04:33 +00:00
docs feature: add song selection 2026-04-11 12:32:24 -07:00
public high impact: add missing sponsor logo 2026-04-12 12:04:58 -07:00
src Fix Get Lucky offset and improve alignment tool 2026-04-14 23:01:27 +00:00
tools/audio-offset Fix Get Lucky offset and improve alignment tool 2026-04-14 23:01:27 +00:00
.gitignore Gitignore debug audio and offset comparison outputs 2026-04-14 23:04:33 +00:00
CLAUDE.md add Just Dance by Lady Gaga as second song 2026-04-12 02:10:10 -07:00
README.md [auto] scaffold Vite + React + TypeScript project 2026-04-11 07:41:23 -07:00
REFACTOR.md add refactor plan for modular mediapipe + gesture callbacks 2026-04-11 16:04:55 -07:00
eslint.config.js [auto] scaffold Vite + React + TypeScript project 2026-04-11 07:41:23 -07:00
index.html Feature/new homepage (#9) 2026-04-12 00:51:38 -07:00
package-lock.json Merge branch 'main' of github.com:1102-Anderson-Ethann/Team-Avengers-2026-Hackathon 2026-04-11 17:22:37 -07:00
package.json merge worktree-ar-ground-threejs: debug app at /debug/, main app at / 2026-04-11 17:19:35 -07:00
sources.md [auto] add sources.md with chart file references 2026-04-11 17:21:57 -07:00
tsconfig.app.json [auto] scaffold Vite + React + TypeScript project 2026-04-11 07:41:23 -07:00
tsconfig.json [auto] scaffold Vite + React + TypeScript project 2026-04-11 07:41:23 -07:00
tsconfig.node.json [auto] scaffold Vite + React + TypeScript project 2026-04-11 07:41:23 -07:00
vercel.json add Vercel rewrites for SPA client-side routing 2026-04-12 00:36:14 -07:00
vite.config.ts [auto] scaffold Vite + React + TypeScript project 2026-04-11 07:41:23 -07:00

README.md

React + TypeScript + Vite

This template provides a minimal setup to get React working in Vite with HMR and some ESLint 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 ESLint configuration

If you are developing a production application, we recommend updating the configuration to enable type-aware lint rules:

export default defineConfig([
  globalIgnores(['dist']),
  {
    files: ['**/*.{ts,tsx}'],
    extends: [
      // Other configs...

      // Remove tseslint.configs.recommended and replace with this
      tseslint.configs.recommendedTypeChecked,
      // Alternatively, use this for stricter rules
      tseslint.configs.strictTypeChecked,
      // Optionally, add this for stylistic rules
      tseslint.configs.stylisticTypeChecked,

      // Other configs...
    ],
    languageOptions: {
      parserOptions: {
        project: ['./tsconfig.node.json', './tsconfig.app.json'],
        tsconfigRootDir: import.meta.dirname,
      },
      // other options...
    },
  },
])

You can also install eslint-plugin-react-x and eslint-plugin-react-dom for React-specific lint rules:

// eslint.config.js
import reactX from 'eslint-plugin-react-x'
import reactDom from 'eslint-plugin-react-dom'

export default defineConfig([
  globalIgnores(['dist']),
  {
    files: ['**/*.{ts,tsx}'],
    extends: [
      // Other configs...
      // Enable lint rules for React
      reactX.configs['recommended-typescript'],
      // Enable lint rules for React DOM
      reactDom.configs.recommended,
    ],
    languageOptions: {
      parserOptions: {
        project: ['./tsconfig.node.json', './tsconfig.app.json'],
        tsconfigRootDir: import.meta.dirname,
      },
      // other options...
    },
  },
])