feat: Implement graceful shutdown and body size guard middleware, and refine TypeScript typings across several routes and components.

This commit is contained in:
diegosouzapw
2026-02-18 12:47:36 -03:00
parent 4c93f0618c
commit 1a7b7e8799
9 changed files with 247 additions and 32 deletions

View File

@@ -1,11 +1,7 @@
{
"compilerOptions": {
"target": "ES2022",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"checkJs": false,
"skipLibCheck": true,
@@ -14,21 +10,16 @@
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",
"incremental": true,
"forceConsistentCasingInFileNames": true,
"paths": {
"@/*": [
"./src/*"
],
"@omniroute/open-sse": [
"./open-sse"
],
"@omniroute/open-sse/*": [
"./open-sse/*"
]
"@/*": ["./src/*"],
"@omniroute/open-sse": ["./open-sse"],
"@omniroute/open-sse/*": ["./open-sse/*"]
},
"plugins": [
{
@@ -45,9 +36,5 @@
".next/types/**/*.ts",
".next/dev/types/**/*.ts"
],
"exclude": [
"node_modules",
"open-sse",
"antigravity-manager-analysis"
]
"exclude": ["node_modules", "open-sse", "antigravity-manager-analysis"]
}