mirror of
https://github.com/robonen/questlang.git
synced 2026-03-20 02:44:47 +00:00
13 lines
270 B
TypeScript
13 lines
270 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/']
|
|
}
|
|
},
|
|
});
|