UNPKG
datainout
Version:
latest (1.1.2-beta)
1.1.2-beta
1.1.1-beta
1.1.0-beta
1.0.0
Import and reports data
datainout
/
tsup.config.ts
12 lines
(10 loc)
•
210 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/**/*.ts"
],
format
: [
"cjs"
,
"esm"
],
outDir
:
"dist"
,
splitting
:
false
,
sourcemap
:
false
,
clean
:
true
,
dts
:
true
, });