Files
lifeforge/client
Melvin Chia 83dd7f66a1 25w29
Former-commit-id: 247dd7b3164bf984be1e995b358dfe77d23f2a54 [formerly 20c87935218c47f5a893c0c7f941f573766653f6] [formerly a7b0f315ac0e4cc20795f5497a540b00c9e520e2 [formerly 7d780711275d3be975ee40c2a86c3817564b1e6f]]
Former-commit-id: 3a0ad302a56aaec06b267c410f35dd013b1fdb33 [formerly 5c39f33282fead761c86091a68e495b37726bc2e]
Former-commit-id: 26ef7bbfad2a2a5aa94661be29eb016527ad483f
2025-07-20 06:54:05 +08:00
..
2025-07-17 16:22:37 +08:00
2025-07-17 16:22:37 +08:00
2025-07-20 06:54:05 +08:00
2025-07-17 16:22:37 +08:00
2025-07-19 00:10:10 +08:00
2025-07-19 00:10:10 +08:00
2025-07-19 00:10:10 +08:00
2025-07-19 00:10:10 +08:00
2025-07-17 16:22:37 +08:00
2025-07-19 00:10:10 +08:00

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:

Expanding the ESLint configuration

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

export default tseslint.config({
  extends: [
    // 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
  ],
  languageOptions: {
    // other options...
    parserOptions: {
      project: ['./tsconfig.node.json', './tsconfig.app.json'],
      tsconfigRootDir: import.meta.dirname
    }
  }
})

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

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

export default tseslint.config({
  plugins: {
    // Add the react-x and react-dom plugins
    'react-x': reactX,
    'react-dom': reactDom
  },
  rules: {
    // other rules...
    // Enable its recommended typescript rules
    ...reactX.configs['recommended-typescript'].rules,
    ...reactDom.configs.recommended.rules
  }
})