UNPKG

delta-sync

Version:

A lightweight framework for bi-directional database synchronization with automatic version tracking and conflict resolution.

14 lines (13 loc) 368 B
import { defineConfig } from 'vitest/config'; export default defineConfig({ test: { globals: true, environment: 'node', include: ['test/**/*.ts'], coverage: { provider: 'v8', reporter: ['text'], // 只使用文本报告 exclude: ['node_modules/**', 'dist/**', '**/*.d.ts'], }, }, });