mirror of
https://github.com/ant-design/ant-design.git
synced 2025-01-18 06:03:38 +08:00
13 lines
273 B
TypeScript
13 lines
273 B
TypeScript
|
import { defineConfig } from 'vitest/config';
|
||
|
import { commonConfig } from './vitest.config';
|
||
|
|
||
|
export default defineConfig({
|
||
|
...commonConfig,
|
||
|
test: {
|
||
|
...commonConfig.test,
|
||
|
include: ['**/node.test.{ts,tsx}'],
|
||
|
environment: 'node',
|
||
|
globals: true,
|
||
|
},
|
||
|
});
|