UNPKG
@uipub/logos
Version:
latest (0.1.7)
0.1.7
0.1.6
0.1.5
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
Logos
@uipub/logos
/
tsup.config.ts
14 lines
(12 loc)
•
249 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { defineConfig }
from
"tsup"
; export
default
defineConfig
({
entry
: [
"src/index.tsx"
],
sourcemap
:
false
,
minify
:
true
,
dts
:
true
,
clean
:
true
,
external
: [
"react"
],
format
: [
"esm"
,
"cjs"
],
splitting
:
false
,
bundle
:
true
, });