update-flake-lock/tsup.config.ts

17 lines
288 B
TypeScript
Raw Normal View History

2024-04-22 01:17:03 +03:00
import { name } from "./package.json";
import { defineConfig } from "tsup";
export default defineConfig({
name,
entry: ["src/index.ts"],
format: ["esm"],
target: "node20",
bundle: true,
splitting: false,
sourcemap: true,
clean: true,
dts: {
resolve: true,
},
});