No description
Find a file
2024-08-31 13:13:51 +08:00
public Initial commit 2023-10-22 00:36:53 +08:00
src Update API endpoint 2024-08-31 13:10:10 +08:00
.eslintrc.cjs Initial commit 2023-10-22 00:36:53 +08:00
.gitignore Initial commit 2023-10-22 00:36:53 +08:00
.woodpecker.yml Update .woodpecker.yml 2024-08-31 13:13:51 +08:00
index.html Changed web app title 2023-11-19 15:44:11 +08:00
package-lock.json Added login functionality 2023-11-19 16:10:36 +08:00
package.json Added login functionality 2023-11-19 16:10:36 +08:00
README.md Update README.md 2023-12-06 02:09:28 +08:00
tsconfig.json Added initial login modal 2023-11-13 23:55:36 +08:00
tsconfig.node.json Initial commit 2023-10-22 00:36:53 +08:00
vite.config.ts Initial commit 2023-10-22 00:36:53 +08:00

React + TypeScript + Vite

status-badge

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:
   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