mirror of
https://github.com/DIYgod/RSSHub.git
synced 2026-08-29 01:53:47 +08:00
14 lines
248 B
TypeScript
14 lines
248 B
TypeScript
import { defineConfig } from 'tsdown';
|
|
|
|
export default defineConfig({
|
|
entry: ['./lib/pkg.ts'],
|
|
shims: true,
|
|
clean: true,
|
|
dts: true,
|
|
copy: ['lib/assets'],
|
|
outDir: 'dist-lib',
|
|
deps: {
|
|
onlyBundle: false,
|
|
},
|
|
});
|