FRONT_GOBERNACION
  • TypeScript 99.6%
  • HTML 0.2%
  • CSS 0.1%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
Camilo F c5486381c4 ♻️ refactor: simplifica genracion de paz y salvo
se simplifica la genracion del paz y salvo para que ya no se aplique el filtro por mes si no qeu genere todos los procesos del abogado
2026-05-22 21:09:21 +00:00
public feat: se crea funcionalidad completa para la generacion de paz y salvo 2026-05-20 13:04:11 +00:00
src ♻️ refactor: simplifica genracion de paz y salvo 2026-05-22 21:09:21 +00:00
.env.example feat: añade variables de entorno a .env.example y actualiza tipos en vite.env.d.ts 2026-01-13 17:58:43 +00:00
.gitignore Feat: carga y exportacion de excel en beta 2026-02-03 22:51:38 +00:00
dockerfile.dev 🔧 config: actualiza docker para desarrollo 2026-05-21 20:36:15 +00:00
dockerfile.prod 🔧 config: se corrigue errores para generar build 2026-05-15 21:33:36 +00:00
eslint.config.js merge changes 2026-01-10 11:23:08 -05:00
index.html merge changes 2026-01-10 11:23:08 -05:00
package-lock.json feat: se crea funcionalidad completa para la generacion de paz y salvo 2026-05-20 13:04:11 +00:00
package.json feat: se crea funcionalidad completa para la generacion de paz y salvo 2026-05-20 13:04:11 +00:00
README.md merge changes 2026-01-10 11:23:08 -05:00
tsconfig.app.json 🔧 config: se corrigue errores para generar build 2026-05-15 21:33:36 +00:00
tsconfig.json merge changes 2026-01-10 11:23:08 -05:00
tsconfig.node.json 🔧 config: se corrigue errores para generar build 2026-05-15 21:33:36 +00:00
vite.config.ts 🔧 config: se corrigue errores para generar build 2026-05-15 21:33:36 +00:00

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:

React Compiler

The React Compiler is not enabled on this template because of its impact on dev & build performances. To add it, see this documentation.

Expanding the ESLint configuration

If you are developing a production application, we recommend updating the configuration to enable type-aware lint rules:

export default defineConfig([
  globalIgnores(['dist']),
  {
    files: ['**/*.{ts,tsx}'],
    extends: [
      // Other configs...

      // Remove tseslint.configs.recommended and replace with this
      tseslint.configs.recommendedTypeChecked,
      // Alternatively, use this for stricter rules
      tseslint.configs.strictTypeChecked,
      // Optionally, add this for stylistic rules
      tseslint.configs.stylisticTypeChecked,

      // Other configs...
    ],
    languageOptions: {
      parserOptions: {
        project: ['./tsconfig.node.json', './tsconfig.app.json'],
        tsconfigRootDir: import.meta.dirname,
      },
      // other options...
    },
  },
])

You can also install eslint-plugin-react-x and eslint-plugin-react-dom for React-specific lint rules:

// eslint.config.js
import reactX from 'eslint-plugin-react-x'
import reactDom from 'eslint-plugin-react-dom'

export default defineConfig([
  globalIgnores(['dist']),
  {
    files: ['**/*.{ts,tsx}'],
    extends: [
      // Other configs...
      // Enable lint rules for React
      reactX.configs['recommended-typescript'],
      // Enable lint rules for React DOM
      reactDom.configs.recommended,
    ],
    languageOptions: {
      parserOptions: {
        project: ['./tsconfig.node.json', './tsconfig.app.json'],
        tsconfigRootDir: import.meta.dirname,
      },
      // other options...
    },
  },
])