@meldscience/meld
Version:
pipeable one-shot prompt scripting toolkit
18 lines (17 loc) • 392 B
text/typescript
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
globals: true,
environment: 'node',
include: ['tests/**/*.test.ts'],
reporters: ['default'],
coverage: {
reporter: ['text', 'json', 'html'],
include: ['src/**/*.ts'],
exclude: ['tests/**', '**/*.d.ts']
},
testTimeout: 2000,
bail: 1,
retry: 1,
}
});