mirror of
https://github.com/quartz-community/graph.git
synced 2026-07-22 02:50:25 +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
16e5775262
commit
a8f664fb6c
1 changed files with 2 additions and 1 deletions
|
|
@ -50,7 +50,8 @@ export default defineConfig({
|
|||
"components/index": "src/components/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