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