UNPKG
genuka-api
Version:
latest (1.3.13)
1.3.13
1.3.12
1.3.11
1.3.10
1.3.8
1.3.7
1.3.5
1.3.4
1.2.18
1.2.17
1.2.16
1.2.15
1.2.14
1.2.12
1.2.11
1.2.8
1.2.7
1.2.6
1.2.4
1.2.2
1.2.1
1.2.0
Javascript(TS) Package to use Genuka API for a StoreFront website
gitlab.com/genuka/genuka-package
genuka-api
/
tsup.config.ts
13 lines
(11 loc)
•
250 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
({
format
: [
"cjs"
,
"esm"
],
entryPoints
: [
"./src/index.js"
],
dts
:
true
,
shims
:
true
,
skipNodeModulesBundle
:
true
,
clean
:
true
,
target
:
"node14"
,
external
: [
"axios"
], });