Skip to content

Commit 085768b

Browse files
committed
chore: fix type error
1 parent 9c08130 commit 085768b

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed
8.41 KB
Binary file not shown.

tsup.config.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,7 @@ export default defineConfig(() => {
88
},
99
});
1010

11-
return solid.generateTsupOptions(options);
11+
const opts = solid.generateTsupOptions(options);
12+
console.log(JSON.stringify(opts, null, 2));
13+
return opts;
1214
});

vitest.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/// <reference types="vitest" />
22
import solidPlugin from "vite-plugin-solid";
3-
import { defineConfig } from "vitest/config";
3+
import { defineConfig, type Plugin } from "vitest/config";
44

55
export default defineConfig({
6-
plugins: [solidPlugin()],
6+
plugins: [solidPlugin() as Plugin],
77

88
test: {
99
environment: "jsdom",

0 commit comments

Comments
 (0)