const { defineConfig } = require('vitest/config'); module.exports = defineConfig({ test: { globals: true, environment: 'node', include: ['test/**/*.test.js'], testTimeout: 15_000, }, });