mirror of https://github.com/buster-so/buster.git
12 lines
241 B
TypeScript
12 lines
241 B
TypeScript
|
import baseConfig from '@buster/vitest-config';
|
||
|
import { defineConfig, mergeConfig } from 'vitest/config';
|
||
|
|
||
|
export default mergeConfig(
|
||
|
baseConfig,
|
||
|
defineConfig({
|
||
|
test: {
|
||
|
environment: 'node',
|
||
|
globals: true,
|
||
|
},
|
||
|
})
|
||
|
);
|