UNPKG
envsyncer
Version:
latest (1.1.4)
1.1.4
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Sync your root .env files into monorepo subfolders with ease
envsyncer
/
tsup.config.ts
13 lines
(11 loc)
•
221 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'
],
dts
:
true
,
splitting
:
false
,
sourcemap
:
true
,
clean
:
true
,
shims
:
true
,
minify
:
true
, })