11 lines
265 B
TypeScript
11 lines
265 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
import tsconfigPaths from 'vite-tsconfig-paths';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
environment: 'node',
|
|
include: ['**/*.test.ts', '**/*.spec.ts'],
|
|
},
|
|
plugins: [tsconfigPaths()]
|
|
});
|