IOPaint/web_app
2024-01-01 16:37:29 +08:00
..
src add ctrl+s to download image 2024-01-01 16:37:29 +08:00
.eslintrc.cjs new web init 2023-11-22 08:53:20 +08:00
.gitignore new web init 2023-11-22 08:53:20 +08:00
components.json new web init 2023-11-22 08:53:20 +08:00
index.html update 2023-12-16 13:34:56 +08:00
package-lock.json FileManager use fuse 2023-12-29 10:59:09 +08:00
package.json FileManager use fuse 2023-12-29 10:59:09 +08:00
postcss.config.js new web init 2023-11-22 08:53:20 +08:00
README.md new web init 2023-11-22 08:53:20 +08:00
tailwind.config.js wip 2023-12-01 10:15:35 +08:00
tsconfig.json new web init 2023-11-22 08:53:20 +08:00
tsconfig.node.json new web init 2023-11-22 08:53:20 +08:00
vite.config.ts new web init 2023-11-22 08:53:20 +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