- Changed health check endpoint from `/api/health` to `/_health` in Dockerfile and docker-compose.yml for consistency. - Removed the now obsolete health check route file from the API. - Updated TypeScript configuration to exclude the `.next` directory, improving build performance and clarity. - Enhanced documentation in proxy.ts to reflect the updated health check endpoint.
15 lines
351 B
JSON
15 lines
351 B
JSON
{
|
|
"extends": "../../tsconfig.next.json",
|
|
"compilerOptions": {
|
|
"plugins": [{ "name": "next" }],
|
|
"composite": true,
|
|
"tsBuildInfoFile": ".typecheck/tsconfig.tsbuildinfo",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
|
|
"exclude": ["node_modules", ".next"]
|
|
}
|