web-font/tsup.config.ts
2024-08-18 15:14:50 +08:00

12 lines
217 B
TypeScript

import { defineConfig } from "tsup";
export default defineConfig({
entry: ["backend/app.ts"],
splitting: false,
sourcemap: true,
clean: true,
bundle: true,
noExternal: [/.*/],
outDir:"dist_backend"
});