mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-11-26 23:28:21 +08:00
12 lines
295 B
TypeScript
12 lines
295 B
TypeScript
import { defineConfig } from 'tsdown';
|
|
import artTemplatesPlugin from './plugins/rollup-plugin-art-templates.ts';
|
|
|
|
export default defineConfig({
|
|
entry: ['./lib/index.ts'],
|
|
minify: true,
|
|
shims: true,
|
|
clean: true,
|
|
plugins: [artTemplatesPlugin()],
|
|
copy: ['lib/assets'],
|
|
});
|