@storm-software/tsdown
Version:
A package containing `tsdown` utilities for building Storm Software libraries and applications
26 lines (24 loc) • 382 B
JavaScript
// 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
};
export {
DEFAULT_BUILD_OPTIONS
};