Go to file
name 315e9035e3 [auto] move difficulty selector into settings panel
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-11 18:12:09 -07:00
docs feature: add song selection 2026-04-11 12:32:24 -07:00
public [auto] add SSC chart parser, wire Get Lucky with audio and difficulty selector 2026-04-11 18:10:59 -07:00
src [auto] move difficulty selector into settings panel 2026-04-11 18:12:09 -07:00
.gitignore New UI for pages, added leaderboard and score (#3) 2026-04-11 16:13:16 -07:00
CLAUDE.md [auto] add video transport controls and default to file source 2026-04-11 09:22:43 -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 [auto] scaffold Vite + React + TypeScript project 2026-04-11 07:41:23 -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
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...
    },
  },
])