auction/frontend/casino
2024-01-08 13:56:25 +08:00
..
public init project 2023-12-12 17:26:03 +03:00
src feat: edit loading 2024-01-08 13:56:25 +08:00
.eslintrc.cjs init project 2023-12-12 17:26:03 +03:00
.gitignore init project 2023-12-12 17:26:03 +03:00
index.html init project 2023-12-12 17:26:03 +03:00
package.json init functions 2024-01-07 15:30:48 +08:00
postcss.config.js feat: init tailwindInit 2023-12-15 02:17:44 +03:00
README.md init project 2023-12-12 17:26:03 +03:00
tailwind.config.js feat: init tailwindInit 2023-12-15 02:17:44 +03:00
tsconfig.json init project 2023-12-12 17:26:03 +03:00
tsconfig.node.json init project 2023-12-12 17:26:03 +03:00
vite.config.ts init functions 2024-01-07 15:30:48 +08:00
yarn.lock init functions 2024-01-07 15:30:48 +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