mirror of
https://github.com/unarray/file-tree-generator.git
synced 2026-07-22 08:40:29 +00:00
10 lines
No EOL
199 B
TypeScript
10 lines
No EOL
199 B
TypeScript
import { defineConfig } from "tsup";
|
|
|
|
export default defineConfig((options) => ({
|
|
entry: {
|
|
"main": "src/FileTreeGenerator.ts"
|
|
},
|
|
minify: !options.watch,
|
|
format: "cjs",
|
|
outDir: "./"
|
|
})); |