* Compute the launcher repo root. * * In OpenAlice, both `pnpm dev` (tsx watch src/main.ts) and `node dist/main.js` * are invoked from the OpenAlice repo root, so `process.cwd()` is the * authoritative answer. The original launcher used relative-to-import-url * (`server/src/config.ts → ../../`)
()
| 181 | * would resolve to the parent of the repo). |
| 182 | */ |
| 183 | function computeLauncherRepoRoot(): string { |
| 184 | return process.cwd(); |
| 185 | } |