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" }], }, });