OpenPanel/packages/ui-types/tsup.config.ts

17 lines
414 B
TypeScript
Raw Normal View History

2024-02-05 09:23:04 +00:00
import { defineConfig } from "tsup";
import { markAsExternalPlugin } from "../shared/mark-as-external-plugin";
export default defineConfig({
entry: ["src/index.tsx"],
splitting: false,
sourcemap: true,
clean: false,
platform: "browser",
esbuildPlugins: [markAsExternalPlugin],
loader: {
".svg": "dataurl",
},
onSuccess: "tsc --project tsconfig.declarations.json",
});