@storm-software/terraform-tools
Version:
Tools for managing Terraform infrastructure within a Nx workspace.
35 lines (33 loc) • 822 B
JavaScript
import "./chunk-URGPIQOV.mjs";
// tsup.config.ts
import { defineConfig } from "tsup";
var tsup_config_default = defineConfig([
{
name: "terraform-tools",
target: "node22",
entryPoints: [
"./*.ts",
"./src/base/index.ts",
"./src/base/terraform-executor.ts",
"./src/base/*.untyped.ts",
"./src/executors/*/executor.ts",
"./src/executors/*/untyped.ts",
"./src/generators/*/generator.ts",
"./src/generators/*/untyped.ts",
"./src/generators/init/init.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
};