Files
deepseek-harness/packages/client/ui-reference/tsconfig.json
T
Yichen Jiang c8e8f8249f fix(web): date @ session rows by last activity, not creation
The Host session list already carries each session's `updatedAt`, which is
the number its own rows show; reading it there keeps the two surfaces from
disagreeing and avoids making a context capability depend on the BFF
assembly that owns the `sessionListMetadata` projection. A session the list
does not carry falls back to the candidate's creation time.

Refs #3154
2026-08-27 11:50:52 +08:00

52 lines
911 B
JSON

{
"extends": "../../../tsconfig.base.client.json",
"compilerOptions": {
"rootDir": "src",
"outDir": "lib/types"
},
"include": [
"src"
],
"references": [
{
"path": "../../../vendor/cordis"
},
{
"path": "../../api/remotes/tsconfig.client.json"
},
{
"path": "../../api/session-controller/tsconfig.client.json"
},
{
"path": "../../context/file-reference"
},
{
"path": "../../context/session-reference"
},
{
"path": "../../runtime-diagnostics/invariants"
},
{
"path": "../../typert/protocol"
},
{
"path": "../../util/workspace-path"
},
{
"path": "../connection/tsconfig.client.json"
},
{
"path": "../locale"
},
{
"path": "../ui-input-trigger"
},
{
"path": "../ui-primitives"
},
{
"path": "../ui-slots"
}
]
}