lama_cleaner/custom-demo/front-end
dbdbd9 36bcfbf142 update updload-draw component 2025-08-04 11:03:34 +07:00
..
src update updload-draw component 2025-08-04 11:03:34 +07:00
.env.dev create custom-demo 2025-07-29 15:28:15 +07:00
.eslintrc.cjs create custom-demo 2025-07-29 15:28:15 +07:00
.gitignore create custom-demo 2025-07-29 15:28:15 +07:00
README.md create custom-demo 2025-07-29 15:28:15 +07:00
components.json create custom-demo 2025-07-29 15:28:15 +07:00
index.html create custom-demo 2025-07-29 15:28:15 +07:00
package-lock.json update updload-draw component 2025-08-04 11:03:34 +07:00
package.json update updload-draw component 2025-08-04 11:03:34 +07:00
postcss.config.js create custom-demo 2025-07-29 15:28:15 +07:00
tailwind.config.js create custom-demo 2025-07-29 15:28:15 +07:00
tsconfig.json create custom-demo 2025-07-29 15:28:15 +07:00
tsconfig.node.json create custom-demo 2025-07-29 15:28:15 +07:00
vite.config.ts create custom-demo 2025-07-29 15:28:15 +07: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