@storm-software/pulumi-tools
Version:
Tools for managing Pulumi infrastructure within a Nx workspace.
31 lines (29 loc) • 652 B
JavaScript
import "./chunk-C3NYIWL4.mjs";
// tsup.config.ts
import { defineConfig } from "tsup";
var tsup_config_default = defineConfig([
{
name: "pulumi-tools",
target: "node22",
entryPoints: [
"./*.ts",
"./src/base/*.ts",
"./src/lib/aws/*.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",
external: ["@storm-software/workspace-tools"]
}
]);
export {
tsup_config_default as default
};