Go to file
Renovate Bot 61b1b20e9a
Build image / build (pull_request) Successful in 18m1s Details
chore(deps): update docker/setup-buildx-action digest to f7ce87c
2025-02-21 17:01:28 +00:00
.gitea/workflows chore(deps): update docker/setup-buildx-action digest to f7ce87c 2025-02-21 17:01:28 +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 Merge pull request 'chore(deps): update ghcr.io/siesta-cat/2chi-api docker tag to v1.0.5' (#59) from renovate/ghcr.io-siesta-cat-2chi-api-1.x into main 2025-02-21 16:31:31 +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 fix(deps): update dependency vite to v6.1.1 2025-02-19 10:01:35 +00:00
package.json fix(deps): update dependency vite to v6.1.1 2025-02-19 10:01:35 +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