@storm-software/k8s-tools
Version:
Tools for managing Kubernetes (k8s) infrastructure within a Nx workspace.
32 lines (28 loc) • 766 B
JavaScript
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-RECJ3G6F.js');
// tsup.config.ts
var _tsup = require('tsup');
var tsup_config_default = _tsup.defineConfig.call(void 0, [
{
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"]
}
]);
exports.default = tsup_config_default;