web-font/tsup.config.ts
2024-08-19 18:10:09 +08:00

13 lines
251 B
TypeScript

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