feat: update ESLint and TypeScript configurations across frontend and backend; enhance component structure and improve data handling in various modules

This commit is contained in:
2025-12-02 16:36:02 -03:00
parent f48d28067c
commit d79e6959c3
215 changed files with 29474 additions and 28173 deletions

View File

@@ -1,9 +1,9 @@
import type { Handle } from "@sveltejs/kit";
import { createAuth } from "@sgse-app/backend/convex/auth";
import { getToken } from "@mmailaender/convex-better-auth-svelte/sveltekit";
import type { Handle } from '@sveltejs/kit';
import { createAuth } from '@sgse-app/backend/convex/auth';
import { getToken } from '@mmailaender/convex-better-auth-svelte/sveltekit';
export const handle: Handle = async ({ event, resolve }) => {
event.locals.token = await getToken(createAuth, event.cookies);
event.locals.token = await getToken(createAuth, event.cookies);
return resolve(event);
return resolve(event);
};