UNPKG
git-account-switch-ssh
Version:
latest (1.2.4)
1.2.4
1.2.3
1.2.2
1.2.1
1.2.0
1.1.5
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.0
Git Account Switch (SSH)
github.com/eric-vandenberg/git-account-switch-ssh
git-account-switch-ssh
/
tsup.config.ts
15 lines
(13 loc)
•
246 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { defineConfig }
from
'tsup'
; export
default
defineConfig
([ {
entry
: [
'./lib/cli.ts'
],
clean
:
true
,
format
: [
'cjs'
],
minify
:
true
,
dts
:
false
,
treeshake
:
true
,
splitting
:
true
,
outDir
:
'./dist'
, }, ]);