chess
Version: 
An algebraic notation driven chess engine that can validate board position and produce a list of viable moves (notated).
17 lines (15 loc) • 405 B
JavaScript
import { defineConfig } from 'vitest/config';
export default defineConfig({
  test: {
    environment: 'node',
    include: ['test/src/**/*.js'],
    threads: false,
    coverage: {
      provider: 'v8',
      reporter: ['text', 'lcov'],
      reportsDirectory: 'coverage',
      include: ['src/**/*.js'],
      exclude: ['test/**', 'node_modules/**', 'coverage/**', 'cjs/**', '@types/**']
    }
  }
});