mirror of
https://github.com/complexcaresolutions/dak.c2s.git
synced 2026-03-17 20:43:41 +00:00
Scaffold the DAK Zweitmeinungs-Portal frontend with: - Vite 7.3 + React 19 + TypeScript 5.9 - Tailwind CSS v4 with @tailwindcss/vite plugin - shadcn/ui (new-york style, neutral base color) with button, input, label, card components - Path alias @/* -> src/* configured in tsconfig and vite - API proxy: /api/* -> http://localhost:8000 - Core deps: react-router-dom, axios, recharts Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
23 lines
616 B
JavaScript
23 lines
616 B
JavaScript
import js from '@eslint/js'
|
|
import globals from 'globals'
|
|
import reactHooks from 'eslint-plugin-react-hooks'
|
|
import reactRefresh from 'eslint-plugin-react-refresh'
|
|
import tseslint from 'typescript-eslint'
|
|
import { defineConfig, globalIgnores } from 'eslint/config'
|
|
|
|
export default defineConfig([
|
|
globalIgnores(['dist']),
|
|
{
|
|
files: ['**/*.{ts,tsx}'],
|
|
extends: [
|
|
js.configs.recommended,
|
|
tseslint.configs.recommended,
|
|
reactHooks.configs.flat.recommended,
|
|
reactRefresh.configs.vite,
|
|
],
|
|
languageOptions: {
|
|
ecmaVersion: 2020,
|
|
globals: globals.browser,
|
|
},
|
|
},
|
|
])
|