mirror of
https://github.com/firstsun-dev/git-files-sync.git
synced 2026-07-22 17:20:30 +00:00
12 lines
234 B
TypeScript
12 lines
234 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
environment: 'node',
|
|
globals: true,
|
|
setupFiles: ['./tests/setup.ts'],
|
|
alias: {
|
|
'obsidian': './tests/setup.ts'
|
|
}
|
|
},
|
|
});
|