UNPKG

worktree-tool

Version:

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

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