lix-install-action/tsup.config.ts

16 lines
269 B
TypeScript
Raw Normal View History

2024-05-02 19:35:58 +00: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 20:45:00 +00:00
clean: true,
2024-05-02 19:35:58 +00:00
dts: {
resolve: true,
},
});