fork of hey-api/openapi-ts because I need some additional things
at main 16 lines 351 B view raw
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);