mirror of
https://github.com/DIYgod/RSSHub.git
synced 2026-09-21 04:38:15 +08:00
13 lines
229 B
TypeScript
13 lines
229 B
TypeScript
import { defineConfig } from 'tsdown';
|
|
|
|
export default defineConfig({
|
|
entry: ['./lib/index.ts'],
|
|
minify: true,
|
|
shims: true,
|
|
clean: true,
|
|
copy: ['lib/assets'],
|
|
deps: {
|
|
onlyBundle: false,
|
|
},
|
|
});
|