mirror of
https://github.com/DIYgod/RSSHub.git
synced 2026-01-15 17:08:08 +00:00
* refactor: replace art template with jsx * fix: tsx files * fix: renderToString import * fix: hono html raw import * feat: remove art
11 lines
202 B
TypeScript
11 lines
202 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',
|
|
});
|