@storm-software/tsdown
Version:
A package containing `tsdown` utilities for building Storm Software libraries and applications
21 lines (17 loc) • 458 B
JavaScript
;Object.defineProperty(exports, "__esModule", {value: true});// src/config.ts
var DEFAULT_BUILD_OPTIONS = {
platform: "node",
target: "node22",
format: ["esm", "cjs"],
tsconfig: "tsconfig.json",
mode: "production",
globalName: "globalThis",
unused: { level: "error" },
injectShims: true,
watch: false,
bundle: true,
treeshake: true,
clean: true,
debug: false
};
exports.DEFAULT_BUILD_OPTIONS = DEFAULT_BUILD_OPTIONS;