// Bootstrap loader for the session worker in dev (tsx) mode. // Uses tsx's register API to enable TypeScript in this worker thread, then // loads the TypeScript entry. import { register } from "tsx/esm/api"; register(); await import("./sessionWorker.ts");