@storm-software/terraform-tools
Version:
Tools for managing Terraform infrastructure within a Nx workspace.
33 lines (30 loc) • 870 B
JavaScript
"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: "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"]
}
]);
exports.default = tsup_config_default;