twenty/packages/twenty-front/tsup.config.ts

30 lines
690 B
TypeScript
Raw Normal View History

import { Config } from '@svgr/core';
import svgr from 'esbuild-plugin-svgr';
import { defineConfig } from 'tsup';
2023-11-10 20:25:14 +03:00
const template: Config['template'] = (variables, { tpl }) => {
2023-11-10 20:25:14 +03:00
return tpl`
${variables.imports};
${variables.interfaces};
const ${variables.componentName} = (${variables.props}) => (
${variables.jsx}
);
${variables.exports};
export const ReactComponent = ${variables.componentName};
`;
};
export default defineConfig([
{
entry: { index: './tsup.ui.index.tsx' },
treeshake: true,
minify: true,
dts: true,
clean: true,
outDir: '../twenty-docs/src/ui/generated',
esbuildPlugins: [svgr({ template })],
},
]);