mirror of
https://github.com/alexgo-io/clarity-codegen.git
synced 2026-01-12 14:34:34 +08:00
15 lines
255 B
TypeScript
15 lines
255 B
TypeScript
import { defineConfig } from "tsup"
|
|
|
|
export default defineConfig({
|
|
outDir: "lib",
|
|
format: ["cjs", "esm"],
|
|
treeshake: true,
|
|
sourcemap: true,
|
|
dts: true,
|
|
env: {
|
|
ENV_NAME: process.env.ENV_NAME ?? "prod",
|
|
},
|
|
inject: [],
|
|
noExternal: []
|
|
})
|