Go to file
john 61df3f063a 🐞 fix: 2024-07-20 10:37:59 +08:00
.yarn feat: 2024-06-24 11:15:18 +08:00
public 🎉 init: 2024-06-18 10:56:57 +08:00
src 🐞 fix: 2024-07-20 10:37:59 +08:00
.env 🎉 init: 2024-06-18 10:56:57 +08:00
.env.development feat: 2024-07-10 18:13:03 +08:00
.env.production feat: 2024-07-19 19:33:51 +08:00
.env.test feat: 2024-07-18 18:49:30 +08:00
.eslintrc.cjs 🎉 init: 2024-06-18 10:56:57 +08:00
.gitignore 🎉 init: 2024-06-18 10:56:57 +08:00
.yarnrc.yml 🎉 init: 2024-06-18 10:56:57 +08:00
README.md 🎉 init: 2024-06-18 10:56:57 +08:00
iconfont.json 🐞 fix: 2024-07-02 18:41:27 +08:00
index.html 🎉 init: 2024-06-18 10:56:57 +08:00
package.json feat: 2024-06-24 18:55:23 +08:00
postcss.config.js feat: 2024-06-19 18:35:06 +08:00
tsconfig.json feat: 2024-06-24 18:55:23 +08:00
tsconfig.node.json 🎉 init: 2024-06-18 10:56:57 +08:00
vite.config.ts feat: 2024-06-24 11:15:18 +08:00
yarn.lock feat: 2024-06-24 11:15:18 +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'],
    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