Skip to content

Commit

Permalink
build: replace root config with in- and exclude
Browse files Browse the repository at this point in the history
  • Loading branch information
Bikossor committed Dec 17, 2023
1 parent a3c376a commit 0dca4b0
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion vitest.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
import { defineConfig } from "vitest/config";

export default defineConfig({
root: "./src",
test: {
coverage: {
include: ["src/**/*.ts"],
exclude: ["src/**/index.ts"],
},
},
});

0 comments on commit 0dca4b0

Please sign in to comment.