Make vitest run at root directory

This commit is contained in:
Takeshi Kimata
2024-05-19 20:54:52 +09:00
parent 5b7eff34cd
commit cbb5993276
6 changed files with 1951 additions and 1591 deletions

10
vitest.config.ts Normal file
View File

@@ -0,0 +1,10 @@
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
coverage: {
exclude: ['**/node_modules/**', 'docs/**', '**/.next/**'],
provider: "v8",
},
},
});