No description
Find a file
Bernardo Lopes a6089a1a65
All checks were successful
ci / docker (push) Successful in 1m50s
Atualização de imagens e localização em 2025-12-18T12:40:36-03:00
2025-12-18 12:40:36 -03:00
.forgejo/workflows revert 7934c5bf89 2025-04-26 10:39:11 -03:00
public Atualização de imagens e localização em 2025-12-18T12:40:36-03:00 2025-12-18 12:40:36 -03:00
src Update in consonance with deadlock updates. 2025-09-12 09:49:57 -03:00
.gitignore Adição do arquivo exceptions.txt ao gitignore. 2024-12-07 03:17:36 -03:00
Dockerfile Ajusto do Dockerfile para pré-processar. 2024-09-04 22:27:07 -03:00
eslint.config.js Commit inicial. 2024-09-03 18:44:43 -03:00
index.html Ajuste dos rótulos para também citar upgrades. 2024-09-05 09:14:42 -03:00
package-lock.json Update in consonance with deadlock updates. 2025-09-12 09:49:57 -03:00
package.json Update in consonance with deadlock updates. 2025-09-12 09:49:57 -03:00
README.md Commit inicial. 2024-09-03 18:44:43 -03:00
tsconfig.app.json Commit inicial. 2024-09-03 18:44:43 -03:00
tsconfig.json Commit inicial. 2024-09-03 18:44:43 -03:00
tsconfig.node.json Commit inicial. 2024-09-03 18:44:43 -03:00
vite.config.ts Implementação de SQLite para pré-processamento e armazenamento dos dados. 2024-09-04 10:25:17 -03: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:

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 tseslint.config({
  languageOptions: {
    // other options...
    parserOptions: {
      project: ['./tsconfig.node.json', './tsconfig.app.json'],
      tsconfigRootDir: import.meta.dirname,
    },
  },
})
  • Replace tseslint.configs.recommended to tseslint.configs.recommendedTypeChecked or tseslint.configs.strictTypeChecked
  • Optionally add ...tseslint.configs.stylisticTypeChecked
  • Install eslint-plugin-react and update the config:
// eslint.config.js
import react from 'eslint-plugin-react'

export default tseslint.config({
  // Set the react version
  settings: { react: { version: '18.3' } },
  plugins: {
    // Add the react plugin
    react,
  },
  rules: {
    // other rules...
    // Enable its recommended rules
    ...react.configs.recommended.rules,
    ...react.configs['jsx-runtime'].rules,
  },
})