mirror of
https://github.com/Qortal/qapp-core.git
synced 2025-06-14 17:41:20 +00:00
16 lines
291 B
TypeScript
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'
|
|
],
|
|
});
|