Go to file
Renovate Bot f856f89a81 chore(deps): update ghcr.io/siesta-cat/2chi-api docker tag to v1.0.3 2025-02-15 12:01:05 +00:00
.gitea/workflows chore(deps): update docker/setup-buildx-action digest to f7ce87c 2025-02-06 14:00:51 +00:00
src fix: issue with getbackendurl cache 2025-02-12 13:13:37 +01:00
.dockerignore chore: prune unused files 2024-12-01 18:25:52 +01:00
.gitignore First commit generated with `bun vite create` 2024-01-26 18:20:53 +01:00
.tool-versions chore(deps): update node.js to v23.8.0 2025-02-14 11:00:57 +00:00
Dockerfile chore(deps): update node.js to v23.8.0 2025-02-14 11:00:57 +00:00
README.md First commit generated with `bun vite create` 2024-01-26 18:20:53 +01:00
compose.yaml chore(deps): update ghcr.io/siesta-cat/2chi-api docker tag to v1.0.3 2025-02-15 12:01:05 +00:00
index.html delete favicon and change tittle 2024-04-27 18:23:40 +02:00
init-mongo.js fmt 2024-04-27 18:17:56 +02:00
package-lock.json Merge pull request 'chore(deps): update dependency @vitejs/plugin-react-swc to v3.8.0' (#51) from renovate/vitejs-plugin-react-swc-3.x into main 2025-02-12 09:42:23 +00:00
package.json Merge pull request 'chore(deps): update dependency @vitejs/plugin-react-swc to v3.8.0' (#51) from renovate/vitejs-plugin-react-swc-3.x into main 2025-02-12 09:42:23 +00:00
renovate.json Update renovate.json 2025-01-03 08:09:40 +00:00
tsconfig.json First commit generated with `bun vite create` 2024-01-26 18:20:53 +01:00
tsconfig.node.json First commit generated with `bun vite create` 2024-01-26 18:20:53 +01:00
vite.config.ts fmt 2024-04-27 18:17:56 +02: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