UNPKG

worktree-tool

Version:

A command-line tool for managing Git worktrees with integrated tmux/shell session management

31 lines (30 loc) 738 B
import { defineConfig } from 'vitest/config'; import path from 'path'; export default defineConfig({ test: { globals: true, environment: 'node', setupFiles: ['./test/setup.ts'], include: [ 'test/unit/**/*.test.ts', 'test/helpers/**/*.test.ts' ], exclude: [ 'node_modules', 'dist', 'test/integration', 'test/e2e' ], coverage: { provider: 'v8', reporter: ['text', 'lcov', 'html'], include: ['src/**/*.ts'], exclude: ['src/index.ts'] } }, resolve: { alias: { '@': path.resolve(__dirname, './src') } } });