import { fileURLToPath } from 'node:url' import { defineConfig } from 'vitest/config' export default defineConfig({ resolve: { alias: { 'clickable-path': fileURLToPath( new URL('./src/index.ts', import.meta.url).href, ), }, }, test: { coverage: { include: ['src'], thresholds: { 100: true }, reporter: ['text', 'json', 'html'], }, }, })