easysql/node_modules/@monaco-editor/react/tsup.config.ts
2025-12-29 18:35:04 +08:00

13 lines
245 B
TypeScript

import { defineConfig } from 'tsup';
export default defineConfig((opts) => ({
clean: true,
dts: true,
entry: ['src/index.ts'],
format: ['cjs', 'esm'],
minify: !opts.watch,
sourcemap: true,
target: 'esnext',
outDir: 'dist',
}));