Files
DianZhanDemo/app/vitest.config.ts

15 lines
293 B
TypeScript
Raw Permalink Normal View History

2025-12-11 01:29:41 +08:00
/**
* Vitest
*
*/
import { defineConfig } from 'vitest/config'
import tsconfigPaths from 'vite-tsconfig-paths'
export default defineConfig({
plugins: [tsconfigPaths()],
test: {
alias: {
'~/shared': '../shared',
},
},
})