unarray_file-tree-generator/tsup.config.ts
2023-08-26 18:07:29 +02:00

13 lines
No EOL
233 B
TypeScript

import { defineConfig } from "tsup";
export default defineConfig((options) => ({
entry: {
"main": "src/FileTreeGenerator.ts"
},
noExternal: [
"ignore"
],
minify: !options.watch,
format: "cjs",
outDir: "./"
}));