mirror of
https://github.com/DIYgod/RSSHub.git
synced 2026-03-13 10:30:18 +08:00
* chore(deps-dev): bump tsdown from 0.20.0 to 0.20.3 Bumps [tsdown](https://github.com/rolldown/tsdown) from 0.20.0 to 0.20.3. - [Release notes](https://github.com/rolldown/tsdown/releases) - [Commits](https://github.com/rolldown/tsdown/compare/v0.20.0...v0.20.3) --- updated-dependencies: - dependency-name: tsdown dependency-version: 0.20.3 dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * chore(deps-dev): set inlineOnly to false in multiple tsdown config files --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
12 lines
225 B
TypeScript
12 lines
225 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',
|
|
inlineOnly: false,
|
|
});
|