Files
lifeforge/apps/mrt-map-builder
Melvin Chia 5b153039cd refactor: refactor defineForm function call to adapt to new SDK
Former-commit-id: 3a1ff65ca816c2c3252213339b18e809c3dd502a [formerly 26865a65e89d9ec07ef00b9c25b3ef8462beca6b] [formerly 723ccdc019a776f1ceaf6ea962c99c9c9fd4a1dc [formerly 13adb94bc0ac41d7b4683fb8911d7582de2a94aa]]
Former-commit-id: 02247351e9e4daf965a35912de353dd5ec2cd1ca [formerly 365f46aa288ca28a72b60acc94ef227c95ef724b]
Former-commit-id: 6e4fefc5f0b54082078f7af004a00b9f048c191f
2025-08-22 21:37:33 +08:00
..
2025-07-31 06:50:51 +08:00
2025-07-31 06:50:51 +08:00
2025-07-31 06:50:51 +08:00
2025-07-31 17:40:28 +08:00
2025-07-31 06:50:51 +08:00
2025-07-31 06:50:51 +08:00
2025-07-31 06:50:51 +08:00
2025-07-31 06:50:51 +08:00
2025-07-31 06:50:51 +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 reactX from 'eslint-plugin-react-x'
import reactDom from 'eslint-plugin-react-dom'

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...
    },
  },
])