mirror of
https://github.com/DeterminateSystems/update-flake-lock.git
synced 2025-04-21 17:22:02 +03:00
Add initial JS setup
This commit is contained in:
parent
cc5f064749
commit
cf6776dfd1
15 changed files with 4046 additions and 39 deletions
16
tsup.config.ts
Normal file
16
tsup.config.ts
Normal file
|
@ -0,0 +1,16 @@
|
|||
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,
|
||||
},
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue