Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | /// <reference types="vite/client" /> /** * blong-party/browser.ts — Party management realm entry point. * * Auto-discovers model handlers (partyPersonModel, etc.) and the fixture handler * (partyFixture) from the `meta/` folder, plus the forwarding orchestrator. * * Consumed by suites that want the party management domain: * * // browser.ts * async function party() { * return import('@feasibleone/blong-party/browser.ts'); * } */ import {realm} from '@feasibleone/blong'; export default realm(() => ({ url: import.meta.url, children: globalThis.window ? import.meta.glob(['./meta/**/*.ts', './browser/orchestrator/**/*.ts']) : ['./meta', './browser/orchestrator'], config: { default: { meta: true, orchestrator: true, component: true, }, }, })); |