UNPKG

@storm-software/tsdown

Version:

A package containing `tsdown` utilities for building Storm Software libraries and applications

26 lines (22 loc) 476 B
"use strict";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;