nix-installer-action/tsup.config.ts

16 lines
269 B
TypeScript
Raw Permalink Normal View History

2024-05-02 22:35:58 +03:00
import { defineConfig } from "tsup";
import { name } from "./package.json";
export default defineConfig({
name,
entry: ["src/index.ts"],
format: ["esm"],
target: "node20",
bundle: true,
splitting: false,
2024-05-15 23:45:00 +03:00
clean: true,
2024-05-02 22:35:58 +03:00
dts: {
resolve: true,
},
});