mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-10-14 02:48:06 +08:00
14 lines
299 B
TypeScript
14 lines
299 B
TypeScript
import { defineConfig } from 'tsup';
|
|
|
|
export default defineConfig({
|
|
entry: ['src/index.ts'],
|
|
splitting: false,
|
|
sourcemap: false,
|
|
clean: true,
|
|
dts: false,
|
|
shims: true,
|
|
format: ['esm'],
|
|
outExtension: () => ({ js: '.mjs' }),
|
|
onSuccess: 'cp -r src/runtime dist',
|
|
});
|