mirror of
https://github.com/robonen/tools.git
synced 2026-03-20 19:04:46 +00:00
22 lines
409 B
TypeScript
22 lines
409 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
projects: [
|
|
{
|
|
extends: true,
|
|
test: {
|
|
typecheck: {
|
|
enabled: false,
|
|
},
|
|
},
|
|
},
|
|
],
|
|
environment: 'jsdom',
|
|
coverage: {
|
|
provider: 'v8',
|
|
include: ['core/*', 'web/*'],
|
|
exclude: ['**/node_modules/**', '**/dist/**'],
|
|
},
|
|
},
|
|
}); |