Files
lifeforge/apps/apiBuilder
melvinchia3636 a6a181e280 fix(apiBuilder): fix localization related issues
Former-commit-id: 28a070684182ae60add36b610140a4b13948dbe4 [formerly 50a37e1bb20b83b245cc9dd6248723fe5799ae3e] [formerly c75e07fef98a4dde80a71906b8769f3292d8bc9c [formerly abd9bb58cc0ce09fa025abd9cfa5635208f223e9]]
Former-commit-id: f1c5e945d13a6ffdcd64b6cd40012dfe07850a5f [formerly 63515f12fe9ec242fdadeedc5c4c9f850e990928]
Former-commit-id: 6f51de06d8a04766306ec3fecfc7a0205107d99e
2025-09-08 20:50:38 +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([
  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 reactDom from 'eslint-plugin-react-dom'
import reactX from 'eslint-plugin-react-x'

export default tseslint.config([
  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...
    }
  }
])