UNPKG

@meteraprotocol/core

Version:

Core functionality and constants for the Metera Protocol

13 lines (11 loc) 232 B
import { defineConfig } from 'tsup'; export default defineConfig({ entry: { index: 'src/index.ts' }, format: ['esm', 'cjs'], dts: true, sourcemap: true, minify: true, clean: true, treeshake: true, external: [], });