Go to file
john 66bc4cd97d 🐞 fix: 2024-07-20 10:46:57 +08:00
.yarn 🎉 init: 2024-07-18 18:51:17 +08:00
public 🎉 init: 2024-07-18 18:51:17 +08:00
src feat: 2024-07-19 19:33:22 +08:00
.env.development 🎉 init: 2024-07-18 18:51:17 +08:00
.env.production 🎉 init: 2024-07-18 18:51:17 +08:00
.env.test 🐞 fix: 2024-07-20 10:46:57 +08:00
.eslintrc.cjs 🎉 init: 2024-07-18 18:51:17 +08:00
.gitignore 🎉 init: 2024-07-18 18:51:17 +08:00
.yarnrc.yml 🎉 init: 2024-07-18 18:51:17 +08:00
README.md 🎉 init: 2024-07-18 18:51:17 +08:00
iconfont.json 🎉 init: 2024-07-18 18:51:17 +08:00
index.html 🎉 init: 2024-07-18 18:51:17 +08:00
package-lock.json 🎉 init: 2024-07-18 18:51:17 +08:00
package.json feat: 2024-07-19 19:33:22 +08:00
postcss.config.js 🎉 init: 2024-07-18 18:51:17 +08:00
tsconfig.json 🎉 init: 2024-07-18 18:51:17 +08:00
tsconfig.node.json feat: 2024-07-19 19:33:22 +08:00
tsconfig.node.tsbuildinfo feat: 2024-07-19 19:33:22 +08:00
vite.config.d.ts 🎉 init: 2024-07-18 18:51:17 +08:00
vite.config.js feat: 2024-07-19 19:33:22 +08:00
vite.config.ts feat: 2024-07-19 19:33:22 +08:00
yarn.lock 🎉 init: 2024-07-18 18:51:17 +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