mirror of
https://github.com/gnmyt/LicenseAPI.git
synced 2026-01-10 10:11:47 +00:00
12 lines
252 B
TypeScript
12 lines
252 B
TypeScript
import { defineConfig } from "tsup";
|
|
|
|
export default defineConfig({
|
|
entry: ["./src/index.ts"],
|
|
format: ["cjs", "esm"],
|
|
dts: true,
|
|
splitting: false,
|
|
sourcemap: true,
|
|
clean: true,
|
|
minify: true,
|
|
external: ["node-fetch"]
|
|
}); |