mirror of
https://gitea.tendokyu.moe/ppc/amnet.git
synced 2026-09-27 17:27:55 +03:00
10 lines
203 B
TypeScript
10 lines
203 B
TypeScript
import { defineConfig } from "tsup";
|
|
|
|
export default defineConfig({
|
|
entry: ["src/index.ts"],
|
|
format: ["cjs", "esm"],
|
|
splitting: false,
|
|
sourcemap: true,
|
|
clean: true,
|
|
dts: true,
|
|
}); |