···1919 "test": "vitest",
2020 "test-ui": "vitest --ui",
2121 "cloudflare-types": "wrangler types",
2222- "supabase-types": "supabase gen types typescript --project-id xprhwuzivafsybqhhpqq --schema public > src/database.types.ts && pnpm run fmt",
2323- "supabase-types-local": "supabase gen types typescript --local > src/database.types.ts && pnpm run fmt"
2222+ "supabase-types": "supabase gen types typescript --project-id xprhwuzivafsybqhhpqq --schema public > src/generated/database.types.ts && pnpm run fmt",
2323+ "supabase-types-local": "supabase gen types typescript --local > src/generated/database.types.ts && pnpm run fmt"
2424 },
2525 "dependencies": {
2626 "@lucide/svelte": "catalog:svelte",
+1-1
app/src/app.d.ts
···11// oxlint-disable typescript/consistent-type-definitions
22import type { Session, SupabaseClient, User } from '@supabase/supabase-js'
33-import type { Database } from './database.types.ts' // import generated types
33+import type { Database } from './generated/database.types.ts' // import generated types
44import type { DbClient } from '$lib/utils'
5566declare global {