import { defineConfig } from 'vitest/config' export default defineConfig({ test: { include: ['test/**/*.test.ts'], environment: 'node', // Scaffold has no tests yet; don't fail the script until modules add theirs. passWithNoTests: true, // Coverage target is the global 80% rule; enable with `--coverage` once modules exist. coverage: { provider: 'v8', include: ['src/**/*.ts', 'public/**/*.ts'], }, }, })