import { defineConfig } from 'vitest/config' export default defineConfig({ test: { include: ['**/*.test.ts', '**/*.test.tsx'], environment: 'jsdom', }, esbuild: { target: 'es2022', }, resolve: { alias: { '@botpress/webchat-client': new URL('../webchat-client/src/index.ts', import.meta.url).pathname, // Needed in order to resolve to the mocked module }, }, })