add backend & full support for cloudflare workers

This commit is contained in:
2026-03-03 15:22:40 +08:00
parent 8dada7f9e3
commit da0a5e29cc
16 changed files with 12978 additions and 421 deletions

11
backend/tsconfig.json Normal file
View File

@@ -0,0 +1,11 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"strict": true,
"skipLibCheck": true,
"types": ["./worker-configuration.d.ts"]
},
"include": ["src/**/*.ts", "worker-configuration.d.ts"]
}