cee65bbd87
- Move workflow IPC types (StartThread, ResumeThread, etc.) to workflow/ipc.ts - Move workflow-worker.ts, workflow-manager.ts, workflow-manager-support.ts - Move worker-runtime.ts and worker-signals.ts (shared infrastructure) - Daemon now imports workflow runtime from @uncaged/workflow - Export WORKFLOW_WORKER_PATH for daemon to spawn workers Phase 3+4 of #320, Testing: #322
23 lines
472 B
TypeScript
23 lines
472 B
TypeScript
import { defineConfig } from "@rslib/core";
|
|
|
|
export default defineConfig({
|
|
lib: [
|
|
{
|
|
format: "esm",
|
|
dts: true,
|
|
},
|
|
],
|
|
source: {
|
|
entry: {
|
|
index: "src/index.ts",
|
|
"sense-worker": "src/sense-worker.ts",
|
|
"experimental-warning-suppression": "src/experimental-warning-suppression.ts",
|
|
},
|
|
},
|
|
output: {
|
|
target: "node",
|
|
cleanDistPath: true,
|
|
copy: [{ from: "./src/dashboard.html", to: "./dashboard.html" }],
|
|
},
|
|
});
|