No description
This repository has been archived on 2026-06-11. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
  • TypeScript 95.5%
  • CSS 3.3%
  • JavaScript 0.5%
  • HTML 0.5%
  • Dockerfile 0.2%
Find a file
2025-10-05 17:50:52 +02:00
public Update favicon and theme 2025-09-25 12:57:38 +02:00
src Add bulk upload support 2025-09-16 23:14:45 +02:00
.dockerignore Add dockerignore 2025-09-10 22:28:52 +02:00
.env Add a flow to logout 2025-09-15 20:29:00 +02:00
.env.production update prod env 2025-10-05 17:50:52 +02:00
.gitignore Here be dragons 2025-09-08 17:44:36 +02:00
.prettierrc.json Add sidebar and prettier 2025-09-10 22:22:28 +02:00
components.json Add shadcn 2025-09-08 18:33:26 +02:00
Dockerfile Add production env 2025-09-10 21:53:30 +02:00
eslint.config.js Add sidebar and prettier 2025-09-10 22:22:28 +02:00
index.html Update favicon and theme 2025-09-25 12:57:38 +02:00
LICENSE Add license 2025-09-15 22:59:54 +02:00
nginx.conf Add Dockerfile 2025-09-08 18:28:23 +02:00
openapi-ts.config.ts Add bulk upload support 2025-09-16 23:14:45 +02:00
package.json Add bulk upload support 2025-09-16 23:14:45 +02:00
pnpm-lock.yaml Add bulk upload support 2025-09-16 23:14:45 +02:00
pnpm-workspace.yaml Add PWA support 2025-09-15 21:18:27 +02:00
README.md Here be dragons 2025-09-08 17:44:36 +02:00
tsconfig.app.json Add sidebar and prettier 2025-09-10 22:22:28 +02:00
tsconfig.json Add sidebar and prettier 2025-09-10 22:22:28 +02:00
tsconfig.node.json Here be dragons 2025-09-08 17:44:36 +02:00
vite.config.ts Update favicon and theme 2025-09-25 12:57:38 +02: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:

export default tseslint.config([
  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 tseslint.config([
  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...
    },
  },
])