auction/frontend/casino
Aleksey_Levin b09b90b261 fixes
2024-01-17 12:54:04 +03:00
..
public init project 2023-12-12 17:26:03 +03:00
src fixes 2024-01-17 12:54:04 +03: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-lock.json refactor(fix): build related issues 2024-01-17 01:55:17 +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
vite.config.ts.timestamp-1704788548210-35cc11f804848.mjs feat: 2024-01-17 12:27:59 +03: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