mirror of
https://github.com/supabase/server.git
synced 2026-09-14 15:28:52 +08:00
d206e5cdb1
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>
12 lines
211 B
JSON
12 lines
211 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"lib": ["ES2022", "DOM"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"strict": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["src"]
|
|
}
|