mirror of
https://github.com/Ionaru/easy-markdown-editor
synced 2025-07-04 08:34:28 -06:00
17 lines
357 B
TypeScript
17 lines
357 B
TypeScript
|
import { defineConfig } from 'vitest/config';
|
||
|
|
||
|
export default defineConfig({
|
||
|
test: {
|
||
|
coverage: {
|
||
|
all: true,
|
||
|
clean: true,
|
||
|
enabled: true,
|
||
|
include: ['src/**/*.ts'],
|
||
|
provider: 'c8',
|
||
|
},
|
||
|
dir: 'src',
|
||
|
environment: 'jsdom',
|
||
|
include: ['**/*.spec.ts'],
|
||
|
},
|
||
|
});
|