fleet-memory/hindsight-control-plane/tsconfig.json
Nicolò Boschi f7a60f898d
feat: filter operations by type + fix stale auto-refresh closure (#522) (#527)
* feat: filter operations by type + fix stale closure in auto-refresh

- Add `type` query param to GET /operations endpoint and engine layer
- Add operation type dropdown filter in Background Operations UI
- Fix auto-refresh interval using stale statusFilter/offset closure by
  adding filter state to useEffect deps and wrapping loadOperations in
  useCallback (fixes #522)
- Regenerate OpenAPI spec and all SDK clients

* fix: update Rust CLI list_operations call with new type parameter
2026-03-09 13:17:00 +01:00

62 lines
1.4 KiB
JSON

{
"compilerOptions": {
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": [
"./src/*"
]
},
"target": "ES2017"
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
".next/dev/types/**/*.ts",
"types/**/*.d.ts",
".next-*/types/**/*.ts",
".next-*/dev/types/**/*.ts",
".next-49944/types/**/*.ts",
".next-49944/dev/types/**/*.ts",
".next-50612/types/**/*.ts",
".next-50612/dev/types/**/*.ts",
".next-54508/types/**/*.ts",
".next-54508/dev/types/**/*.ts",
".next-55630/types/**/*.ts",
".next-55630/dev/types/**/*.ts",
".next-58976/types/**/*.ts",
".next-58976/dev/types/**/*.ts",
".next-64080/types/**/*.ts",
".next-64080/dev/types/**/*.ts",
".next-50432/types/**/*.ts",
".next-50432/dev/types/**/*.ts",
".next-54840/types/**/*.ts",
".next-54840/dev/types/**/*.ts",
".next-64856/types/**/*.ts",
".next-64856/dev/types/**/*.ts"
],
"exclude": [
"node_modules"
]
}