Skip to content

Commit

Permalink
fix: tsconfig file path for vite
Browse files Browse the repository at this point in the history
  • Loading branch information
venikx committed Oct 19, 2023
1 parent cb08556 commit 36f1998
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export default defineConfig({
},
plugins: [
dts({
tsConfigFilePath: './src/tsconfig.json',
tsconfigPath: './src/tsconfig.json',
}),
], // Generates typescript d.ts files with tsc
});
2 changes: 1 addition & 1 deletion vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default mergeConfig(
},
plugins: [
dts({
tsConfigFilePath: './test/tsconfig.json',
tsconfigPath: './test/tsconfig.json',
}),
], // Generates typescript d.ts files with tsc
}),
Expand Down

0 comments on commit 36f1998

Please sign in to comment.