Add health check functionality and type checking to the project

* Introduced HealthCheck class for system health monitoring.
* Added HealthCheckApiRoutes for readiness endpoint.
* Updated package.json to include TypeScript type checking command.
This commit is contained in:
2025-11-21 03:03:41 -05:00
parent ab34b614dd
commit f66266b218
3 changed files with 64 additions and 1 deletions

View File

@@ -8,7 +8,8 @@
"format": "prettier --write .",
"lint": "eslint --max-warnings 0 './src'",
"prelint:fix": "bun run format",
"lint:fix": "eslint --fix './src'"
"lint:fix": "eslint --fix './src'",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@eslint/css": "0.14.1",