Add initial project files including package.json, tsconfig.json, and index.ts for uptime monitoring

This commit is contained in:
2026-03-09 08:18:34 +01:00
parent a799e1996c
commit 1d81eb1e0b
4 changed files with 322 additions and 0 deletions

11
tsconfig.json Normal file
View File

@@ -0,0 +1,11 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "CommonJS",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"outDir": "./dist"
},
"include": ["src/**/*"]
}