mirror of
https://github.com/2234839/web-font.git
synced 2026-05-19 21:08:11 +08:00
14 lines
328 B
TypeScript
14 lines
328 B
TypeScript
import { defineConfig } from "tsdown";
|
||
|
||
export default defineConfig({
|
||
entry: ["backend/app.ts", "基准测试_llrt.ts"],
|
||
format: ["cjs"],
|
||
clean: true,
|
||
sourcemap: true,
|
||
outDir: "dist_backend",
|
||
deps: {
|
||
/** 所有依赖都打进 bundle(LLRT scratch 镜像无 node_modules) */
|
||
alwaysBundle: [/.*/],
|
||
},
|
||
});
|