Files
lifeforge/client
Ahmed Mohamedeen e2c71d4e3d chore(dependencies): add remark-gfm package to client
Former-commit-id: 6dea4d6643d7704473459703ce00d66363cfcb8b [formerly 6b668b4178c029301b7b3e96f98a871e4d4ca599] [formerly a68e05c528b5ef7376068b2db211504a44c99ab7 [formerly d96a7885ae17bbd48293d0ce134b89d448dec64d]]
Former-commit-id: 296b0a0d2164895a062144cfc94798e7eee6a097 [formerly 7796566316edb6c112fecc8b2c76d5c29f4f8158]
Former-commit-id: 2bcc0c166ac5df950ef44aa2560bc70efe3ab1dd
2025-09-18 17:56:22 -06:00
..
2025-08-01 00:11:35 +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
  }
})