No description
Find a file
Jan-Peter Dhalle 05fa2f047e
Some checks failed
Build and deliver containers / npm build deliver jp transfer UI (push) Has been cancelled
route
2025-11-08 01:41:00 +01:00
.github/workflows rename flow 2025-03-08 22:34:24 +01:00
public big rework 2025-06-02 17:39:52 +02:00
requests big rework 2025-06-02 17:39:52 +02:00
src route 2025-11-08 01:41:00 +01:00
.gitignore Initial Commit 2025-03-01 22:55:01 +01:00
components.json Initial Commit 2025-03-01 22:55:01 +01:00
docker-compose.yml add dockercompose and build args 2025-03-02 02:40:53 +01:00
Dockerfile missing space 2025-03-02 02:42:27 +01:00
eslint.config.js Initial Commit 2025-03-01 22:55:01 +01:00
index.html favicon, text 2025-03-02 02:50:54 +01:00
nginx.conf Initial Commit 2025-03-01 22:55:01 +01:00
package-lock.json Password change and set for admin 2025-03-10 22:33:18 +01:00
package.json bugfix: support for large files stream hashing + hash-wasm 2025-07-04 01:06:50 +02:00
pnpm-lock.yaml bugfix: support for large files stream hashing + hash-wasm 2025-07-04 01:06:50 +02:00
postcss.config.js Initial Commit 2025-03-01 22:55:01 +01:00
prettier.config.cjs Initial Commit 2025-03-01 22:55:01 +01:00
README.md Initial Commit 2025-03-01 22:55:01 +01:00
tailwind.config.js big rework 2025-06-02 17:39:52 +02:00
tsconfig.app.json Initial Commit 2025-03-01 22:55:01 +01:00
tsconfig.json Initial Commit 2025-03-01 22:55:01 +01:00
tsconfig.node.json Initial Commit 2025-03-01 22:55:01 +01:00
vite.config.ts Initial Commit 2025-03-01 22:55:01 +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,
  },
})