chore: initial project setup

This commit is contained in:
Stevan Freeborn
2025-05-10 15:26:47 -05:00
commit ec3fd230b7
13 changed files with 5317 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
environment: 'node',
coverage: {
provider: 'istanbul',
reporter: ['text', 'html', 'json', 'lcov'],
include: ['**/src/**/*.ts'],
exclude: ['**/src/index.ts', '**/src/server.ts'],
},
},
});