UNPKG
@iocium/cachekit
Version:
latest (1.1.0)
1.1.0
1.0.1
A pluggable, backend-agnostic caching adapter for Node.js and serverless platforms
@iocium/cachekit
/
tsup.config.ts
9 lines
(8 loc)
•
170 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
import { defineConfig }
from
'tsup'
; export
default
defineConfig
({
entry
: [
'src/index.ts'
],
outDir
:
'dist'
,
format
: [
'cjs'
,
'esm'
],
dts
:
true
,
clean
:
true
, });