mirror of
https://github.com/DIYgod/RSSHub.git
synced 2026-08-29 01:53:47 +08:00
bb5a944b35
* chore(deps-dev): bump tsdown from 0.21.9 to 0.21.10 Bumps [tsdown](https://github.com/rolldown/tsdown) from 0.21.9 to 0.21.10. - [Release notes](https://github.com/rolldown/tsdown/releases) - [Commits](https://github.com/rolldown/tsdown/compare/v0.21.9...v0.21.10) --- updated-dependencies: - dependency-name: tsdown dependency-version: 0.21.10 dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * fix: migrate tsdown options * test: fix flaky test --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
21 lines
452 B
TypeScript
21 lines
452 B
TypeScript
import { defineConfig } from 'tsdown';
|
|
|
|
export default defineConfig({
|
|
entry: ['./lib/container.ts'],
|
|
outDir: 'dist-container',
|
|
format: 'esm',
|
|
dts: false,
|
|
minify: true,
|
|
clean: true,
|
|
platform: 'node',
|
|
target: 'esnext',
|
|
treeshake: true,
|
|
define: {
|
|
'process.env.NODE_ENV': JSON.stringify('production'),
|
|
},
|
|
deps: {
|
|
onlyBundle: false,
|
|
neverBundle: ['@cloudflare/containers'],
|
|
},
|
|
});
|