mirror of
https://github.com/quartz-community/github-flavored-markdown.git
synced 2026-07-22 02:50:28 +00:00
fix: move tsconfig from dts object to top-level option
The DtsConfig type in tsup does not have a tsconfig property.
Use top-level tsconfig option instead of dts: { tsconfig: ... }.
This commit is contained in:
parent
b519b80c76
commit
64498f9b18
1 changed files with 2 additions and 1 deletions
|
|
@ -5,7 +5,8 @@ export default defineConfig({
|
|||
index: "src/index.ts",
|
||||
},
|
||||
format: ["esm"],
|
||||
dts: { tsconfig: "tsconfig.build.json" },
|
||||
dts: true,
|
||||
tsconfig: "tsconfig.build.json",
|
||||
sourcemap: true,
|
||||
clean: true,
|
||||
treeshake: true,
|
||||
|
|
|
|||
Loading…
Reference in a new issue