mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-10-13 18:22:13 +08:00
15 lines
272 B
TypeScript
15 lines
272 B
TypeScript
import { defineConfig } from 'tsup';
|
|
|
|
export default defineConfig({
|
|
entry: [
|
|
'src/index.ts',
|
|
],
|
|
splitting: false,
|
|
sourcemap: false,
|
|
clean: true,
|
|
dts: true,
|
|
shims: true,
|
|
format: ['esm'],
|
|
outExtension: () => ({ js: '.mjs' }),
|
|
});
|