Add TeleWatchdog Cloudflare Worker

This commit is contained in:
zimk
2026-04-19 00:28:19 +08:00
commit 5c013e3abb
7 changed files with 2561 additions and 0 deletions

20
tsconfig.json Normal file
View File

@@ -0,0 +1,20 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"lib": [
"ES2022",
"WebWorker"
],
"types": [
"@cloudflare/workers-types"
]
},
"include": [
"src/**/*.ts"
]
}