scum-quest-web
  • TypeScript 96.5%
  • JavaScript 1.6%
  • CSS 1.2%
  • HTML 0.7%
Find a file
florian 0fefeb5827
All checks were successful
Pages / deploy (push) Successful in 18s
Merge pull request 'Configure Renovate' (#1) from renovate/configure into main
Reviewed-on: #1
2026-06-14 02:50:16 +02:00
.forgejo/workflows add forgejo pages deploy 2026-06-14 02:45:01 +02:00
.github/workflows work in progress 2025-06-20 01:48:13 +02:00
public init 2025-06-20 01:10:18 +02:00
src Refactor QuestBuilder imports for improved structure and clarity 2025-06-20 01:50:14 +02:00
.gitignore init 2025-06-20 01:10:18 +02:00
eslint.config.js init 2025-06-20 01:10:18 +02:00
index.html init 2025-06-20 01:10:18 +02:00
package.json work in progress 2025-06-20 01:48:13 +02:00
README.md init 2025-06-20 01:10:18 +02:00
renovate.json Add renovate.json 2026-06-14 00:49:33 +00:00
tailwind.config.js init 2025-06-20 01:10:18 +02:00
tsconfig.app.json init 2025-06-20 01:10:18 +02:00
tsconfig.json init 2025-06-20 01:10:18 +02:00
tsconfig.node.json init 2025-06-20 01:10:18 +02:00
vite.config.ts Update Vite configuration to set base path for deployment 2025-06-20 01:57:30 +02:00
yarn.lock work in progress 2025-06-20 01:48:13 +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({
  extends: [
    // 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,
  ],
  languageOptions: {
    // other options...
    parserOptions: {
      project: ['./tsconfig.node.json', './tsconfig.app.json'],
      tsconfigRootDir: import.meta.dirname,
    },
  },
})

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({
  plugins: {
    // Add the react-x and react-dom plugins
    'react-x': reactX,
    'react-dom': reactDom,
  },
  rules: {
    // other rules...
    // Enable its recommended typescript rules
    ...reactX.configs['recommended-typescript'].rules,
    ...reactDom.configs.recommended.rules,
  },
})