Go to file
John Montagu, the 4th Earl of Sandvich 692bc829a2
Refactor target pages into feature modules and remove event-era credits flow
2026-04-15 18:08:46 -07:00
docs feature: add song selection 2026-04-11 12:32:24 -07:00
public Remove non-YouTube songs and local audio files 2026-04-15 17:28:38 +00:00
src Refactor target pages into feature modules and remove event-era credits flow 2026-04-15 18:08:46 -07:00
tools/audio-offset Add setup guide for audio offset tool 2026-04-14 23:21:26 +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
PAUSE_SIGNAL.md Improve debug views: add 2D graph, fix flipped axes, hide invisible landmarks, show data pre-calibration 2026-04-15 20:35:32 +00:00
README.md [auto] scaffold Vite + React + TypeScript project 2026-04-11 07:41:23 -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 Add custom StepMania track upload feature 2026-04-15 15:53:33 +00:00
package.json Add custom StepMania track upload feature 2026-04-15 15:53:33 +00: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 Only show YouTube-enabled songs, exclude others from build 2026-04-14 23:29:35 +00: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...
    },
  },
])