WIP: A simple cli for daily tangled use cases and AI integration. This is for my personal use right now, but happy if others get mileage from it! :)
at main 13 lines 280 B view raw
1import { defineConfig } from 'vitest/config'; 2 3export default defineConfig({ 4 test: { 5 globals: true, 6 environment: 'node', 7 coverage: { 8 provider: 'v8', 9 reporter: ['text', 'json', 'html'], 10 exclude: ['node_modules/', 'dist/', 'tests/'], 11 }, 12 }, 13});