mirror of
https://github.com/DeterminateSystems/update-flake-lock.git
synced 2024-12-23 13:32:07 +01:00
17 lines
288 B
TypeScript
17 lines
288 B
TypeScript
|
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,
|
||
|
},
|
||
|
});
|