Skip to content

Commit

Permalink
fix: tsconfig file path for vite (#793)
Browse files Browse the repository at this point in the history
* fix: tsconfig file path for vite

* Create mighty-toys-own.md
  • Loading branch information
venikx authored Oct 19, 2023
1 parent 179e5f8 commit 7c26ebb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/mighty-toys-own.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@equinor/esv-intersection": patch
---

fix: tsconfig file path for vite
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 7c26ebb

Please sign in to comment.