No description
Find a file
2025-07-21 11:19:27 +02:00
.theia Fixes + initial work on TIckets 2025-04-15 15:18:06 +02:00
public Commit 2025-03-27 10:00:58 +01:00
src Fixed validation insertion of Courses and Suppliers 2025-05-12 11:18:24 +02:00
.gitignore Finished Login Jwt thing 2024-11-30 22:30:07 +01:00
eslint.config.js First Commit 2024-11-29 23:14:51 +01:00
index.html Added LICENCE to files missing one 2025-03-25 09:17:56 +01:00
LICENSE added MPL License 2025-04-28 10:38:30 +02:00
package-lock.json Updated packages 2025-07-21 11:19:27 +02:00
package.json Fixed Storage creation and import, TODO: Fix the reload page... 2025-01-23 22:46:51 +01:00
README.md First Commit 2024-11-29 23:14:51 +01:00
TODO Commit 2025-03-27 10:00:58 +01:00
tsconfig.app.json First Commit 2024-11-29 23:14:51 +01:00
tsconfig.json First Commit 2024-11-29 23:14:51 +01:00
tsconfig.node.json First Commit 2024-11-29 23:14:51 +01:00
vite.config.ts Added LICENCE to files missing one 2025-03-25 09:17:56 +01: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,
  },
})