n8n/packages/@n8n/expression-runtime/vitest.config.ts
Danny Martini fb4b94064f
feat(core): Add package scaffold with public API types and architecture docs (#26047)
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-02-20 16:13:44 +00:00

14 lines
283 B
TypeScript

import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
globals: true,
environment: 'node',
coverage: {
provider: 'v8',
reporter: ['text', 'json', 'html'],
exclude: ['dist/**', 'bundle/**', '**/*.test.ts', '**/*.config.ts'],
},
},
});