mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-02 00:22:32 +03:00
e358d677f9
* Add new package * Add twenty-emails package * Use generated files from twenty-emails in twenty-server * Fix deleted file * Import emails templates properly
10 lines
166 B
TypeScript
10 lines
166 B
TypeScript
import { defineConfig } from 'tsup';
|
|
|
|
export default defineConfig([
|
|
{
|
|
entry: { index: './tsup.index.tsx' },
|
|
format: ['cjs', 'esm'],
|
|
dts: true,
|
|
},
|
|
]);
|