Go to file
Renovate Bot 9f338ddac7
Build image / build (pull_request) Successful in 1m45s Details
chore(deps): update docker/setup-buildx-action action to v3
2025-01-03 11:43:03 +00:00
.gitea/workflows chore(deps): update docker/setup-buildx-action action to v3 2025-01-03 11:43:03 +00:00
src show image url as alt 2024-12-12 13:01:23 +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 add tool versions 2025-01-03 10:22:58 +01:00
Dockerfile chore(deps): pin node.js 2025-01-03 08:19:09 +00:00
README.md First commit generated with `bun vite create` 2024-01-26 18:20:53 +01:00
compose.yaml cambios docker compose 2024-12-09 09:49:13 +01: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): pin dependencies 2025-01-03 08:38:59 +00:00
package.json fix(deps): pin dependencies 2025-01-03 08:38:59 +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