质控程序

banxia 3223113aa5 feat: 小窗口-中窗口图标切换 1 개월 전
dist-electron b2c0ccc8e3 提交 5 달 전
electron 3223113aa5 feat: 小窗口-中窗口图标切换 1 개월 전
public 06b86bcd8e fix: 修复部分bug 1 개월 전
release b2c0ccc8e3 提交 5 달 전
src 3223113aa5 feat: 小窗口-中窗口图标切换 1 개월 전
.env b2c0ccc8e3 提交 5 달 전
.env.development b2c0ccc8e3 提交 5 달 전
.env.production b2c0ccc8e3 提交 5 달 전
.eslintrc.cjs b2c0ccc8e3 提交 5 달 전
.gitignore e3b2db52a0 feat: 自定义标题栏 1 개월 전
README.md b2c0ccc8e3 提交 5 달 전
eslint.config.js b2c0ccc8e3 提交 5 달 전
index.html 06b86bcd8e fix: 修复部分bug 1 개월 전
package-lock.json b2c0ccc8e3 提交 5 달 전
package.json 419904378c fix: 修复部分bug 1 개월 전
pnpm-lock.yaml b2c0ccc8e3 提交 5 달 전
postcss.config.js b2c0ccc8e3 提交 5 달 전
tailwind.config.js b2c0ccc8e3 提交 5 달 전
test.md b2c0ccc8e3 提交 5 달 전
tsconfig.app.json b2c0ccc8e3 提交 5 달 전
tsconfig.json b2c0ccc8e3 提交 5 달 전
tsconfig.node.json b2c0ccc8e3 提交 5 달 전
vite.config.ts b2c0ccc8e3 提交 5 달 전

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 tseslint.config({
    languageOptions: {
    // other options...
    parserOptions: {
      project: ['./tsconfig.node.json', './tsconfig.app.json'],
      tsconfigRootDir: import.meta.dirname,
    },
    },
    })
    
  • Replace tseslint.configs.recommended to tseslint.configs.recommendedTypeChecked or tseslint.configs.strictTypeChecked

  • Optionally add ...tseslint.configs.stylisticTypeChecked

  • Install eslint-plugin-react and update the config:

    // eslint.config.js
    import react from 'eslint-plugin-react'
    
    export default tseslint.config({
    // Set the react version
    settings: { react: { version: '18.3' } },
    plugins: {
    // Add the react plugin
    react,
    },
    rules: {
    // other rules...
    // Enable its recommended rules
    ...react.configs.recommended.rules,
    ...react.configs['jsx-runtime'].rules,
    },
    })