UNPKG

@storm-software/pulumi-tools

Version:

Tools for managing Pulumi infrastructure within a Nx workspace.

29 lines (26 loc) 700 B
"use strict";Object.defineProperty(exports, "__esModule", {value: true});// tsup.config.ts var _tsup = require('tsup'); var tsup_config_default = _tsup.defineConfig.call(void 0, [ { 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"] } ]); exports.default = tsup_config_default;