You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
easy-markdown-editor/vitest.config.ts

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'],
},
});