mirror of
https://github.com/robonen/questlang.git
synced 2026-03-20 19:04:47 +00:00
13 lines
272 B
TypeScript
13 lines
272 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
include: ['src/**/*.test.ts'],
|
|
exclude: ['node_modules', 'dist'],
|
|
coverage: {
|
|
provider: 'v8',
|
|
exclude: ['src/cli.ts', 'dist/', 'node_modules/'],
|
|
},
|
|
},
|
|
});
|