Files
supabase__server/tsconfig.json
Tomás Pozo d206e5cdb1 feat: implement server-side DX primitives, wrappers, and adapters (#6)
Two-layer architecture:
- Layer 1 (wrappers): withSupabase
- Layer 2 (core): verifyAuth, verifyCredentials,
  extractCredentials, createContextClient,
  createAdminClient, resolveEnv

Features:
- Auth modes: always, public, secret, user
(with named key support).
- CORS handling built into withSupabase.
- Hono middleware adapter.
- JWKS-based JWT verification via jose.

---------

Co-authored-by: Kalleby Santos <kalleby_santos@hotmail.com>
2026-03-20 01:36:52 -05:00

12 lines
211 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"lib": ["ES2022", "DOM"],
"module": "ESNext",
"moduleResolution": "bundler",
"strict": true,
"skipLibCheck": true
},
"include": ["src"]
}