Skip to content

Commit

Permalink
chore: Simplify vitest config.
Browse files Browse the repository at this point in the history
  • Loading branch information
Shakeskeyboarde committed Sep 30, 2023
1 parent 9dccde7 commit c7decab
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,16 @@ export default defineConfig({
enabled: true,
all: true,
reportsDirectory: './out/coverage',
include: ['packages/*/src/**/*.{ts,tsx}'],
exclude: ['packages/_*', '**/exports.ts', '**/*.test.*', '**/*.d.ts'],
exclude: [
'**/_*',
'**/lib',
'**/dist',
'**/coverage',
'**/exports.ts',
'**/examples.ts',
'**/*.config.*',
'**/*.d.ts',
],
branches: 80,
functions: 70,
lines: 50,
Expand Down

0 comments on commit c7decab

Please sign in to comment.