UNPKG
common-styles-css
Version:
latest (1.0.1)
1.0.1
its a library common css styles
google.com
common-styles-css
/
tsup.config.ts
10 lines
(9 loc)
•
212 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
import { defineConfig }
from
"tsup"
; export
default
defineConfig
({
format
:[
'cjs'
,
'esm'
],
entry
:[
'./src/index.ts'
],
dts
:
true
,
shims
:
true
,
skipNodeModulesBundle
:
true
,
clean
:
true
})