No description
  • TypeScript 73%
  • Go 25.9%
  • HTML 0.4%
  • Dockerfile 0.3%
  • CSS 0.2%
  • Other 0.2%
Find a file
2026-04-13 02:28:36 +01:00
backend permisisonindifs 2026-02-10 01:53:45 +00:00
docker add dockerfile 2026-04-13 02:11:17 +01:00
public make favicon 1:1 and transparent 2026-01-05 18:54:47 +00:00
src wire up the search functionality on the interview page 2026-04-02 18:24:48 +01:00
.env.example add email notifications 2026-01-03 10:02:46 +00:00
.gitignore add stuff 2026-01-01 22:27:24 +00:00
bun.lock use bun 2026-02-06 10:18:00 +00:00
docker-compose.yml add dockerfile 2026-04-13 02:11:17 +01:00
Dockerfile docker: use npm instead of bun 2026-04-13 02:28:36 +01:00
eslint.config.js Initial commit 2026-01-01 20:36:32 +00:00
index.html change offen account 2026-02-11 17:39:24 +00:00
package.json improve i18n 2026-01-03 17:54:14 +00:00
README.md Initial commit 2026-01-01 20:36:32 +00:00
tsconfig.app.json Initial commit 2026-01-01 20:36:32 +00:00
tsconfig.json Initial commit 2026-01-01 20:36:32 +00:00
tsconfig.node.json Initial commit 2026-01-01 20:36:32 +00:00
vite.config.ts update frontend and add form editing 2026-01-02 17:55:07 +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 currently not compatible with SWC. See this issue for tracking the progress.

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...
    },
  },
])