mirror of
https://github.com/imdap/ruoyi-plus-vben5.git
synced 2026-04-23 00:38:34 +08:00
12 lines
198 B
TypeScript
12 lines
198 B
TypeScript
import { defineConfig } from 'tsdown';
|
|
|
|
export default defineConfig({
|
|
clean: true,
|
|
dts: true,
|
|
entry: ['src/index.ts'],
|
|
format: ['esm'],
|
|
outExtensions: () => ({
|
|
dts: '.d.ts',
|
|
}),
|
|
});
|