UNPKG

@davts/xtream

Version:

Xtream API Typescript Client

22 lines (19 loc) 327 B
import { defineConfig, Options } from "tsup"; const config: Options = { format: [ "cjs", "esm" ], entry: [ "src/index.ts" ], outDir: "dist", splitting: true, sourcemap: true, clean: false, platform: "node", minify: true, treeshake: true, dts: true, }; export default defineConfig(config);