mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-20 01:51:54 +03:00
e70ef58f97
* Docausaurus code live editor test * Docusaurus sandpack test * Fix setup * Delete files * Fixes * Complete work * Fix config * Fix config --------- Co-authored-by: bosiraphael <raphael.bosi@gmail.com>
14 lines
344 B
JavaScript
14 lines
344 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",
|
|
noExternal: ['@emotion/react', '@emotion/styled', '@tabler/icons-react', 'hex-rgb']
|
|
},
|
|
]); |