0.0.1
This commit is contained in:
commit
63781a6119
16 changed files with 3502 additions and 0 deletions
16
cfg/tsdown.config.ts
Normal file
16
cfg/tsdown.config.ts
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
import type { UserConfig } from "tsdown";
|
||||
import { defineConfig } from "tsdown";
|
||||
|
||||
const config: UserConfig = defineConfig({
|
||||
clean: true,
|
||||
dts: { oxc: true, parallel: true },
|
||||
entry: ["../index.ts"],
|
||||
minify: false,
|
||||
outDir: "../dist",
|
||||
platform: "node",
|
||||
sourcemap: false,
|
||||
target: "esnext",
|
||||
treeshake: true,
|
||||
});
|
||||
|
||||
export default config;
|
||||
Loading…
Add table
Add a link
Reference in a new issue