This commit is contained in:
Ralph Khreish
2025-09-08 12:33:43 -07:00
parent b9e3eecafe
commit d4826e0258
39 changed files with 3785 additions and 34 deletions

View File

@@ -0,0 +1,19 @@
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
environment: 'node',
globals: true,
coverage: {
provider: 'v8',
reporter: ['text', 'json', 'html'],
exclude: [
'node_modules/',
'dist/',
'**/*.d.ts',
'**/*.test.ts',
'**/*.spec.ts'
]
}
}
});