UNPKG

@ice3man543/interactsh-node

Version:

Node.js client for Interactsh - A tool for detecting out-of-band interactions

12 lines (11 loc) 239 B
import { defineConfig } from 'tsup' export default defineConfig({ entry: ['src/lib.ts', 'src/index.ts'], format: ['cjs', 'esm'], dts: true, sourcemap: true, clean: true, splitting: false, treeshake: true, outDir: 'dist' })