No description https://www.bc-twold.nl
  • TypeScript 98.8%
  • CSS 0.9%
  • HTML 0.3%
Find a file
Roelof 842f758deb
All checks were successful
Build and Push / build (push) Successful in 46s
feat: seizoenselectie rechts uitgelijnd voor de login-knop
Verplaats de SeasonSelector in de navigatiebalk naar rechts, direct
voor de login/logout-knop, met ms-lg-auto voor de rechtsuitlijning.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-01 18:00:16 +02:00
.claude Claude permissions 2026-07-01 17:54:58 +02:00
.forgejo/workflows chore: weer bouwen tegen productie libreapi 2026-06-18 15:02:14 +02:00
api Moved from Azure DevOps 2026-06-10 09:56:22 +02:00
public Moved from Azure DevOps 2026-06-10 09:56:22 +02:00
src feat: seizoenselectie rechts uitgelijnd voor de login-knop 2026-07-01 18:00:16 +02:00
.dockerignore Moved from Azure DevOps 2026-06-10 09:56:22 +02:00
.eslintrc.cjs Moved from Azure DevOps 2026-06-10 09:56:22 +02:00
.gitignore Moved from Azure DevOps 2026-06-10 09:56:22 +02:00
CLAUDE.md docs: actualiseer CI/CD-documentatie naar Forgejo Actions 2026-06-15 19:32:11 +02:00
compose.yaml Moved from Azure DevOps 2026-06-10 09:56:22 +02:00
Dockerfile Moved from Azure DevOps 2026-06-10 09:56:22 +02:00
index.html fix: datums altijd dd-MM-yyyy en toon volledige dagnaam 2026-06-17 19:41:43 +02:00
package-lock.json Moved from Azure DevOps 2026-06-10 09:56:22 +02:00
package.json Moved from Azure DevOps 2026-06-10 09:56:22 +02:00
README.md Moved from Azure DevOps 2026-06-10 09:56:22 +02:00
tsconfig.json Moved from Azure DevOps 2026-06-10 09:56:22 +02:00
tsconfig.node.json Moved from Azure DevOps 2026-06-10 09:56:22 +02:00
vite.config.ts Moved from Azure DevOps 2026-06-10 09:56:22 +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:

  • Configure the top-level parserOptions property like this:
export default {
  // other rules...
  parserOptions: {
    ecmaVersion: "latest",
    sourceType: "module",
    project: ["./tsconfig.json", "./tsconfig.node.json"],
    tsconfigRootDir: __dirname,
  },
};
  • Replace plugin:@typescript-eslint/recommended to plugin:@typescript-eslint/recommended-type-checked or plugin:@typescript-eslint/strict-type-checked
  • Optionally add plugin:@typescript-eslint/stylistic-type-checked
  • Install eslint-plugin-react and add plugin:react/recommended & plugin:react/jsx-runtime to the extends list