UNPKG
@meteraprotocol/core
Version:
latest (0.0.19)
0.0.19
0.0.18
0.0.17
0.0.16
Core functionality and constants for the Metera Protocol
meteraprotocol.io
@meteraprotocol/core
/
tsup.config.ts
13 lines
(11 loc)
•
232 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
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
: [], });