qapp-core/tsup.config.ts
2025-04-12 10:30:43 +03:00

15 lines
272 B
TypeScript

import { defineConfig } from 'tsup';
export default defineConfig({
entry: ['src/index.ts', 'src/global.ts'],
format: ['esm', 'cjs'],
dts: true,
external: [
'react',
'@mui/material',
'@mui/system',
'@emotion/react',
'@emotion/styled',
],
});