Go to file
john 248153340e feat: 2024-07-22 13:59:08 +08:00
.yarn 🎉 init: 2024-07-20 10:32:01 +08:00
public 🎉 init: 2024-07-20 10:32:01 +08:00
src feat: 2024-07-22 13:59:08 +08:00
.env.development feat: 2024-07-22 13:56:28 +08:00
.env.production 🎉 init: 2024-07-20 10:32:01 +08:00
.eslintrc.cjs 🎉 init: 2024-07-20 10:32:01 +08:00
.gitignore 🎉 init: 2024-07-20 10:32:01 +08:00
.yarnrc.yml 🎉 init: 2024-07-20 10:32:01 +08:00
README.md 🎉 init: 2024-07-20 10:32:01 +08:00
iconfont.json 🎉 init: 2024-07-20 10:32:01 +08:00
index.html 🎉 init: 2024-07-20 10:32:01 +08:00
package.json 🎉 init: 2024-07-20 10:32:01 +08:00
postcss.config.js feat: 2024-07-22 13:59:08 +08:00
tsconfig.json 🎉 init: 2024-07-20 10:32:01 +08:00
tsconfig.node.json 🎉 init: 2024-07-20 10:32:01 +08:00
vite.config.d.ts 🎉 init: 2024-07-20 10:32:01 +08:00
vite.config.js 🎉 init: 2024-07-20 10:32:01 +08:00
yarn.lock 🎉 init: 2024-07-20 10:32:01 +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