- Delete old Vite+Svelte frontend - Initialize new SvelteKit project with TypeScript - Configure Tailwind CSS v4 + DaisyUI - Implement JWT authentication with auto-refresh - Create login page with form validation (Zod) - Add protected route guards - Update Docker configuration for single-stage build - Add E2E tests with Playwright (6/11 passing) - Fix Svelte 5 reactivity with $state() runes Known issues: - 5 E2E tests failing (timing/async issues) - Token refresh implementation needs debugging - Validation error display timing
61 lines
1.1 KiB
JSON
61 lines
1.1 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"paths": {
|
|
"$lib": [
|
|
"../src/lib"
|
|
],
|
|
"$lib/*": [
|
|
"../src/lib/*"
|
|
],
|
|
"$components": [
|
|
"../src/lib/components"
|
|
],
|
|
"$components/*": [
|
|
"../src/lib/components/*"
|
|
],
|
|
"$app/types": [
|
|
"./types/index.d.ts"
|
|
]
|
|
},
|
|
"rootDirs": [
|
|
"..",
|
|
"./types"
|
|
],
|
|
"verbatimModuleSyntax": true,
|
|
"isolatedModules": true,
|
|
"lib": [
|
|
"esnext",
|
|
"DOM",
|
|
"DOM.Iterable"
|
|
],
|
|
"moduleResolution": "bundler",
|
|
"module": "esnext",
|
|
"noEmit": true,
|
|
"target": "esnext"
|
|
},
|
|
"include": [
|
|
"ambient.d.ts",
|
|
"non-ambient.d.ts",
|
|
"./types/**/$types.d.ts",
|
|
"../vite.config.js",
|
|
"../vite.config.ts",
|
|
"../src/**/*.js",
|
|
"../src/**/*.ts",
|
|
"../src/**/*.svelte",
|
|
"../test/**/*.js",
|
|
"../test/**/*.ts",
|
|
"../test/**/*.svelte",
|
|
"../tests/**/*.js",
|
|
"../tests/**/*.ts",
|
|
"../tests/**/*.svelte"
|
|
],
|
|
"exclude": [
|
|
"../node_modules/**",
|
|
"../src/service-worker.js",
|
|
"../src/service-worker/**/*.js",
|
|
"../src/service-worker.ts",
|
|
"../src/service-worker/**/*.ts",
|
|
"../src/service-worker.d.ts",
|
|
"../src/service-worker/**/*.d.ts"
|
|
]
|
|
} |