chore: initial project setup

This commit is contained in:
Stevan Freeborn
2025-05-24 16:40:55 -05:00
commit e14c0515e9
13 changed files with 4724 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import { defineConfig } from 'vitest/config';
import swc from 'unplugin-swc';
export default defineConfig({
test: {
environment: 'node',
coverage: {
provider: 'istanbul',
reporter: ['text', 'html', 'json', 'lcov'],
include: ['**/src/**/*.ts'],
exclude: ['**/src/index.ts'],
},
},
plugins: [swc.vite()],
});