fork of hey-api/openapi-ts because I need some additional things
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at feat/use-query-options 16 lines 390 B view raw
1import { fileURLToPath } from 'node:url'; 2 3import { configDefaults, defineProject, mergeConfig } from 'vitest/config'; 4 5import viteConfig from './vite.config'; 6 7export default mergeConfig( 8 viteConfig, 9 defineProject({ 10 test: { 11 environment: 'jsdom', 12 exclude: [...configDefaults.exclude, 'e2e/**'], 13 root: fileURLToPath(new URL('./', import.meta.url)), 14 }, 15 }), 16);