fork of hey-api/openapi-ts because I need some additional things
1import { fileURLToPath } from 'node:url';
2
3import { createVitestConfig } from '@config/vite-base';
4
5// https://vitejs.dev/config/
6export default createVitestConfig(
7 fileURLToPath(new URL('./', import.meta.url)),
8 {
9 test: {
10 environment: 'node',
11 globals: true,
12 include: ['test/**/*.test.ts'],
13 watch: false,
14 },
15 },
16);