mirror of
https://github.com/2234839/web-font.git
synced 2025-06-15 22:09:17 +08:00
12 lines
217 B
TypeScript
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"
|
|
});
|