Go to file
john 20c5eaf47d 🐞 fix: 2024-07-01 19:01:47 +08:00
.yarn Merge branch 'develop' into feature/pc端 2024-07-01 17:02:08 +08:00
public feat: 2024-07-01 15:18:09 +08:00
src 🐞 fix: 2024-07-01 19:01:47 +08:00
.env 🎉 init: 2024-06-26 15:31:14 +08:00
.env.development 🎉 init: 2024-06-27 17:00:45 +08:00
.env.production feat: 2024-07-01 15:18:09 +08:00
.env.test 🎉 init: 2024-06-27 17:00:45 +08:00
.eslintrc.cjs 🎉 init: 2024-06-26 15:31:14 +08:00
.gitignore 🎉 init: 2024-06-26 15:31:14 +08:00
.yarnrc.yml 🎉 init: 2024-06-26 15:31:14 +08:00
README.md 🎉 init: 2024-06-26 15:31:14 +08:00
iconfont.json 🎉 init: 2024-06-26 15:31:14 +08:00
index.html 🐞 fix: 2024-06-27 18:30:02 +08:00
nodeai.worid.crt 🐞 fix: 2024-07-01 19:01:47 +08:00
nodeai.worid.key 🐞 fix: 2024-07-01 19:01:47 +08:00
nodeai.worid.pem 🐞 fix: 2024-07-01 19:01:47 +08:00
nodeai.world.conf 🐞 fix: 2024-07-01 19:01:47 +08:00
package.json 🎉 init: 2024-06-26 15:31:14 +08:00
postcss.config.js feat: 2024-06-28 18:00:45 +08:00
tsconfig.json 🎉 init: 2024-06-26 15:31:14 +08:00
tsconfig.node.json 🎉 init: 2024-06-26 15:31:14 +08:00
vite.config.ts 🎉 init: 2024-06-27 17:00:45 +08:00
yarn.lock 🎉 init: 2024-06-26 15:31:14 +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