training_data/packages/iconer
longdayi 78496357f6 01102136 2025-01-10 21:36:17 +08:00
..
public 08021948 2024-08-02 19:48:38 +08:00
src 12311557 2024-12-31 15:57:32 +08:00
types/src 01030748 2025-01-03 09:24:46 +08:00
.eslintrc.cjs 08021948 2024-08-02 19:48:38 +08:00
README.md 08021948 2024-08-02 19:48:38 +08:00
package.json 01102136 2025-01-10 21:36:17 +08:00
tsconfig.app.json 08021948 2024-08-02 19:48:38 +08:00
tsconfig.json 08021948 2024-08-02 19:48:38 +08:00
tsconfig.node.json 08021948 2024-08-02 19:48:38 +08:00
vite.config.ts 08021948 2024-08-02 19:48:38 +08: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:

Expanding the ESLint configuration

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

  • Configure the top-level parserOptions property like this:
export default {
  // other rules...
  parserOptions: {
    ecmaVersion: 'latest',
    sourceType: 'module',
    project: ['./tsconfig.json', './tsconfig.node.json', './tsconfig.app.json'],
    tsconfigRootDir: __dirname,
  },
}
  • Replace plugin:@typescript-eslint/recommended to plugin:@typescript-eslint/recommended-type-checked or plugin:@typescript-eslint/strict-type-checked
  • Optionally add plugin:@typescript-eslint/stylistic-type-checked
  • Install eslint-plugin-react and add plugin:react/recommended & plugin:react/jsx-runtime to the extends list