ui-thing
Version:
CLI used to add Nuxt components to a project
24 lines (22 loc) • 453 B
text/typescript
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
globals: true,
environment: "node",
coverage: {
provider: "v8",
reporter: ["text", "json", "html"],
exclude: [
"node_modules/",
"dist/",
"tests/",
"**/*.test.ts",
"**/*.config.ts",
"**/types.ts",
],
},
mockReset: true,
restoreMocks: true,
clearMocks: true,
},
});