UNPKG
serenity-command-builder
Version:
latest (0.1.0)
0.1.0
A simple command builder for SerenityJS.
serenity-command-builder
/
tsup.config.ts
13 lines
(11 loc)
•
259 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
: [
"src/index.ts"
],
format
: [
"cjs"
,
"esm"
],
bundle
:
true
,
minify
:
true
,
dts
:
true
,
keepNames
:
true
,
noExternal
: [/^(?!@serenityjs\/)/], external: [/^@serenityjs\
//],
});