No description
Find a file
2024-01-24 22:50:40 +08:00
public Initial commit 2023-10-22 00:36:53 +08:00
src add not applicable field 2024-01-24 22:50:40 +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 to only run on master branch 2024-01-06 15:51:48 +08:00
index.html Change site name 2024-01-07 12:47:23 +08:00
package-lock.json Update dropdown menu for new transaction 2024-01-07 10:52:53 +08:00
package.json Update dropdown menu for new transaction 2024-01-07 10:52:53 +08:00
Pipfile changes landing page 2023-12-21 12:54:27 +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