Every deploy first replays every production ledger with the engine about to ship. The droplet gains a nightly rollup of counts and a nightly backup to Spaces, a pulse script the pulse skill reads, rate limits on opening rooms and taking seats, and eviction of idle rooms from memory with reload from their ledgers on the next visit. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_0141G6xqLeNRYEtviLWSB5Up
25 lines
434 B
JSON
25 lines
434 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2022",
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"types": [
|
|
"node"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"../src/lib/game/**/*.ts",
|
|
"../deploy/replay-ledgers.ts"
|
|
],
|
|
"exclude": [
|
|
"../src/lib/game/*.test.ts",
|
|
"../src/lib/game/*.svelte.ts",
|
|
"../src/lib/game/test-helpers.ts"
|
|
]
|
|
}
|