mirror of
https://github.com/Gimanh/taskview-community.git
synced 2026-09-11 21:38:56 +00:00
15 lines
297 B
TypeScript
15 lines
297 B
TypeScript
// vitest.config.ts
|
|
import { defineConfig } from 'vitest/config'
|
|
import { resolve } from 'path'
|
|
|
|
export default defineConfig({
|
|
resolve: {
|
|
alias: {
|
|
'@': resolve(__dirname, 'src')
|
|
}
|
|
},
|
|
test: {
|
|
globalSetup: './src/api/__tests__/setup-db.ts',
|
|
},
|
|
})
|