mirror of
https://github.com/Qortal/qapp-core.git
synced 2025-06-13 09:21:20 +00:00
15 lines
272 B
TypeScript
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',
|
|
],
|
|
});
|