mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-19 17:42:27 +03:00
7aa6b20418
* working * forgot docs folder * modify according to comments
13 lines
256 B
JavaScript
13 lines
256 B
JavaScript
import { defineConfig } from "tsup";
|
|
|
|
export default defineConfig([
|
|
{
|
|
entry: {"index": './tsup.ui.index.tsx'},
|
|
treeshake: true,
|
|
minify: true,
|
|
verbose: true,
|
|
dts: true,
|
|
clean: true,
|
|
outDir: "../docs/src/ui/generated",
|
|
},
|
|
]); |