mirror of
https://github.com/Qortal/qapp-core.git
synced 2026-04-27 19:09:22 +00:00
18 lines
330 B
TypeScript
18 lines
330 B
TypeScript
import { defineConfig } from 'tsup';
|
|
|
|
export default defineConfig({
|
|
entry: ['src/index.ts', 'src/global.ts'],
|
|
format: ['esm', 'cjs'],
|
|
clean: false,
|
|
dts: false,
|
|
external: [
|
|
'react',
|
|
'@mui/material',
|
|
'@mui/system',
|
|
'@emotion/react',
|
|
'@emotion/styled',
|
|
'react-dom',
|
|
'react-router-dom',
|
|
],
|
|
});
|