@storm-software/k8s-tools
Version:
Tools for managing Kubernetes (k8s) infrastructure within a Nx workspace.
32 lines (30 loc) • 685 B
JavaScript
import "./chunk-RSHYWSQP.mjs";
// tsup.config.ts
import { defineConfig } from "tsup";
var tsup_config_default = defineConfig([
{
name: "k8s-tools",
target: "node22",
entryPoints: [
"./*.ts",
"./src/types.ts",
"./src/utils/*.ts",
"./src/executors/*/executor.ts",
"./src/generators/*/generator.ts",
"./src/plugins/docker/index.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
};