mirror of
https://github.com/orionprotocol/sdk.git
synced 2026-03-14 06:02:36 +03:00
12 lines
224 B
TypeScript
12 lines
224 B
TypeScript
import { defineConfig } from 'tsup'
|
|
|
|
export default defineConfig({
|
|
entry: ['src/index.ts'],
|
|
sourcemap: true,
|
|
platform: 'neutral',
|
|
outDir: 'lib',
|
|
format: ['esm', 'cjs'],
|
|
dts: true,
|
|
clean: true,
|
|
shims: true,
|
|
}) |