import { defineConfig } from "tsup";
export default defineConfig([
{
entry: ["src/index.ts"],
format: ["esm"],
dts: true,
clean: true,
sourcemap: true,
target: "node22",
outDir: "dist",
noExternal: ["@reasonix/core-utils", "ink"],
},
{
entry: ["src/cli/index.ts"],
format: ["esm"],
dts: false,
clean: false,
sourcemap: true,
target: "node22",
outDir: "dist/cli",
banner: {
js: "#!/usr/bin/env node\nimport { createRequire as __cr } from 'node:module'; if (typeof globalThis.require === 'undefined') { globalThis.require = __cr(import.meta.url); }",
},
platform: "node",
noExternal: [/.*/],
esbuildOptions(opts) {
opts.external = [...(opts.external ?? []), "react-devtools-core"];
},
},
]);