mirror of
https://github.com/robonen/tools.git
synced 2026-03-20 19:04:46 +00:00
17 lines
405 B
TypeScript
17 lines
405 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
projects: [
|
|
'configs/oxlint/vitest.config.ts',
|
|
'core/stdlib/vitest.config.ts',
|
|
'core/platform/vitest.config.ts',
|
|
'web/vue/vitest.config.ts',
|
|
],
|
|
coverage: {
|
|
provider: 'v8',
|
|
include: ['core/*', 'web/*'],
|
|
exclude: ['**/node_modules/**', '**/dist/**'],
|
|
},
|
|
},
|
|
}); |