mirror of
https://github.com/orionprotocol/sdk.git
synced 2026-03-17 00:31:34 +03:00
11 lines
206 B
TypeScript
11 lines
206 B
TypeScript
import { defineConfig } from 'tsup'
|
|
|
|
export default defineConfig({
|
|
entry: ['src/index.ts'],
|
|
splitting: false,
|
|
sourcemap: true,
|
|
outDir: 'lib',
|
|
format: ['esm', 'cjs'],
|
|
dts: true,
|
|
clean: true,
|
|
}) |