mirror of
https://github.com/2234839/web-font.git
synced 2025-04-06 05:25:44 +08:00
13 lines
251 B
TypeScript
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",
|
|
});
|