mirror of
https://github.com/zoriya/v10.git
synced 2026-08-05 21:57:29 +00:00
12 lines
201 B
TypeScript
12 lines
201 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
define: {
|
|
__DEV__: 'true',
|
|
},
|
|
test: {
|
|
environment: 'jsdom',
|
|
include: ['src/**/*.test.{ts,tsx}'],
|
|
},
|
|
});
|