17 lines
416 B
JavaScript
17 lines
416 B
JavaScript
import { defineConfig } from "vitest/config"
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
exclude: [
|
|
"**/node_modules/**",
|
|
"**/dist/**",
|
|
"**/cypress/**",
|
|
"**/.{astro,direnv,idea,git,cache,output,temp}/**",
|
|
"**/{karma,rollup,webpack,vite,vitest,jest,ava,babel,nyc,cypress,tsup,build}.config.*",
|
|
],
|
|
coverage: {
|
|
provider: "istanbul",
|
|
reporter: ["text"],
|
|
},
|
|
},
|
|
})
|