mirror of
https://github.com/merlinhu1/truthmark.git
synced 2026-08-25 07:53:25 +02:00
14 lines
273 B
TypeScript
14 lines
273 B
TypeScript
import { defineConfig } from "tsup";
|
|
|
|
export default defineConfig({
|
|
entry: ["src/cli/main.ts"],
|
|
format: ["esm"],
|
|
platform: "node",
|
|
skipNodeModulesBundle: true,
|
|
target: "node20",
|
|
clean: true,
|
|
sourcemap: true,
|
|
banner: {
|
|
js: "#!/usr/bin/env node",
|
|
},
|
|
}); |