UNPKG
@flowlab/all
Version:
latest (0.0.2)
0.0.2
0.0.1
A cool library focusing on handling various flows
github.com/countstarss/flowlab
countstarss/flowlab
@flowlab/all
/
packages
/
root
/
tsup.config.ts
12 lines
(10 loc)
•
221 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import { defineConfig }
from
'tsup'
; export
default
defineConfig
({
entry
: [
'src/index.ts'
,
'src/examples/test.ts'
],
format
:
'esm'
,
dts
:
true
,
sourcemap
:
true
,
clean
:
true
,
minify
:
true
,
splitting
:
true
, });