@storm-software/projen
Version:
Tools for managing Projen configuration automation within a Nx workspace.
32 lines (30 loc) • 617 B
JavaScript
import {
init_esm_shims
} from "./chunk-ULH77QLV.mjs";
// tsup.config.ts
init_esm_shims();
import { defineConfig } from "tsup";
var tsup_config_default = defineConfig([
{
name: "projen",
target: "node22",
entryPoints: [
"./*.ts",
"./src/components/*.ts",
"./src/executors/*/executor.ts",
"./src/generators/*/generator.ts"
],
outDir: "dist",
format: ["cjs", "esm"],
platform: "node",
splitting: true,
clean: true,
dts: true,
sourcemap: false,
shims: true,
tsconfig: "./tsconfig.json"
}
]);
export {
tsup_config_default as default
};