File size: 259 Bytes
548a458
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
// 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");