worktree-tool
Version:
A command-line tool for managing Git worktrees with integrated tmux/shell session management
33 lines (32 loc) • 740 B
text/typescript
import { defineConfig } from 'vitest/config';
import path from 'path';
export default defineConfig({
test: {
globals: true,
environment: 'node',
setupFiles: ['./test/setup.ts'],
include: [
'test/e2e/**/*.test.ts'
],
exclude: [
'node_modules',
'dist'
],
testTimeout: 60000,
coverage: {
provider: 'v8',
reporter: ['text', 'lcov', 'html'],
exclude: [
'node_modules',
'dist',
'test',
'src/index.ts'
]
}
},
resolve: {
alias: {
'@': path.resolve(__dirname, './src')
}
}
});