ulthar-framework/packages/templates/lib/vitest.config.ts
2024-09-04 19:14:57 -03:00

11 lines
178 B
TypeScript

import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
coverage: {
exclude: ["**/index.ts"],
},
passWithNoTests: true,
},
});