喵著前端
Go to file
2025-03-13 15:59:49 +08:00
public logo修改 2025-03-03 18:01:56 +08:00
src 所属者选择更新样式 2025-03-13 15:59:49 +08:00
.eslintrc.cjs 套餐包及充值 2025-03-02 12:25:55 +08:00
.gitignore 添加忽略 2024-06-14 22:37:22 +08:00
index.html logo修改 2025-03-04 09:13:46 +08:00
package-lock.json 套餐包及充值 2025-03-02 12:25:55 +08:00
package.json 套餐包及充值 2025-03-02 12:25:55 +08:00
README.md fc 2024-03-11 19:13:42 +08:00
tsconfig.json 每五分钟获取用户信息 2024-12-16 11:38:40 +08:00
tsconfig.node.json fc 2024-03-11 19:13:42 +08:00
vite.config.ts 套餐包及充值 2025-03-02 12:25:55 +08:00

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