mirror of
https://github.com/jakejarvis/rdapper.git
synced 2026-09-22 23:05:31 -04:00
10 lines
195 B
TypeScript
10 lines
195 B
TypeScript
import { defineConfig } from "tsdown";
|
|
|
|
export default defineConfig({
|
|
platform: "node",
|
|
entry: ["src/index.ts"],
|
|
dts: true,
|
|
nodeProtocol: "strip",
|
|
deps: { neverBundle: ["tldts"] },
|
|
});
|