magic-nix-cache-action/tsup.config.ts

16 lines
261 B
TypeScript
Raw Normal View History

2024-04-21 01:57:38 +02:00
import { defineConfig } from "tsup";
export default defineConfig({
name: "detsys-ts",
entry: ["src/main.ts"],
format: ["esm"],
target: "node20",
bundle: true,
splitting: false,
sourcemap: true,
clean: true,
dts: {
resolve: true,
},
});