Skip to content

Commit

Permalink
fix: TS error
Browse files Browse the repository at this point in the history
  • Loading branch information
magne4000 committed Sep 25, 2024
1 parent c8bbb0a commit 03c71ae
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/vercel/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"moduleResolution": "Bundler"
"moduleResolution": "Bundler",
"paths": {
"vite": ["./node_modules/vite"]
}
}
}
3 changes: 3 additions & 0 deletions packages/vercel/tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ export default defineConfig([
target: "node18",
dts: {
entry: "./src/index.ts",
compilerOptions: {
paths: {}
}
},
},
]);

0 comments on commit 03c71ae

Please sign in to comment.