UNPKG

vvlad1973-telegram-framework

Version:
21 lines (19 loc) 434 B
import { defineConfig } from 'vitest/config'; export default defineConfig({ test: { include: ['tests/**/*.test.js'], exclude: ['tests/**/*.t_est.js', 'node_modules/**'], globals: true, environment: 'node', coverage: { provider: 'v8', reporter: ['text', 'html'], exclude: [ 'node_modules/**', 'tests/**', '**/*.t_est.js', '**/index.js', ], }, }, });