fix: lockfile and configs

This commit is contained in:
mingholy.lmh
2025-09-15 20:50:50 +08:00
parent 3f535195b3
commit dbdb4db4f0
7 changed files with 2476 additions and 1867 deletions

View File

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