mirror of
https://github.com/quartz-community/syntax-highlighting.git
synced 2026-07-22 02:50:27 +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
2421a4a64f
commit
a64f1e88cb
1 changed files with 2 additions and 1 deletions
|
|
@ -48,7 +48,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