mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
11 lines
252 B
TypeScript
11 lines
252 B
TypeScript
import { defineProject, mergeConfig } from 'vitest/config';
|
|
import configShared from '../../vitest.config.js';
|
|
|
|
export default mergeConfig(configShared, {
|
|
defineProject: defineProject({
|
|
test: {
|
|
setupFiles: ['./__tests__/setup.ts'],
|
|
},
|
|
}),
|
|
});
|