mirror of
https://github.com/jakejarvis/rdapper.git
synced 2025-10-18 14:24:29 -04:00
10 lines
182 B
TypeScript
10 lines
182 B
TypeScript
import { defineConfig } from "tsdown";
|
|
|
|
export default defineConfig({
|
|
platform: "node",
|
|
entry: ["src/index.ts"],
|
|
dts: true,
|
|
nodeProtocol: "strip",
|
|
external: ["tldts"],
|
|
});
|