feat(api): add SRS Cloudflare Worker with email digest, charts, and D1 integration

This commit is contained in:
Prad Nukala
2026-08-25 11:19:19 -04:00
parent f551878961
commit a3431da300
21 changed files with 3166 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"moduleResolution": "bundler",
"lib": ["esnext"],
"jsx": "react-jsx",
"strict": true,
"noUncheckedIndexedAccess": true,
"resolveJsonModule": true,
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"skipLibCheck": true,
"noEmit": true,
"types": ["./worker-configuration.d.ts", "bun"]
},
"include": ["src", "scripts"]
}