qapp-core/tsup.config.ts
2025-06-13 05:52:40 +03:00

16 lines
291 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',
'mediainfo.js'
],
});