UNPKG

genuka-api

Version:

Javascript(TS) Package to use Genuka API for a StoreFront website

13 lines (11 loc) 250 B
import { defineConfig } from "tsup"; export default defineConfig({ format: ["cjs", "esm"], entryPoints: ["./src/index.ts"], dts: true, shims: true, skipNodeModulesBundle: true, clean: true, target: "node14", external: ["axios"], });