Files
botsu.app/packages/protocol/tsconfig.json
botsu 74eeaa1a5a feat: add shared BOTSU documents and cookie counter
Add authenticated document objects persisted on the BOTSU drive, opaque shared references for local drafts, and websocket document snapshots/patches.

Add synchronized cookie counter API/client slice and keep the canary UI icon updates covered by BOTSU tests.
2026-08-04 16:49:41 +02:00

22 lines
458 B
JSON

{
"compilerOptions": {
"allowImportingTsExtensions": true,
"exactOptionalPropertyTypes": true,
"lib": ["ES2022", "DOM"],
"module": "NodeNext",
"moduleResolution": "NodeNext",
"noEmit": true,
"noUncheckedIndexedAccess": true,
"strict": true,
"target": "ES2022",
"types": []
},
"include": [
"src/index.ts",
"src/profile.ts",
"src/presence.ts",
"src/matrix-workspace.ts",
"src/cookies.ts"
]
}