Files
llmapikey/jsconfig.json
tiennm99 02fa52ccf9 feat: scaffold OpenRouter key giveaway site (gated, code-only)
- Next.js 15 App Router (JS+JSDoc): landing, auth-gated dashboard, docs
- GitHub OAuth via Supabase; identity anchored on numeric provider_id
- key provisioning: reserve-then-mint-persist-compensate, one key per account
- api_keys in unexposed llmapikey schema via direct Postgres; RLS deny-all
- live minting gated behind PROVISIONING_ENABLED; Vercel auto-deploy disabled
- unit tests (mask, request-body), RLS deny-all test, reconcile script
2026-06-13 14:18:52 +07:00

15 lines
266 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./*"]
},
"checkJs": true,
"module": "esnext",
"moduleResolution": "bundler",
"target": "es2022"
},
"include": ["**/*.js", "**/*.jsx"],
"exclude": ["node_modules"]
}