mirror of
https://github.com/hknsh/project-knedita.git
synced 2024-11-28 17:41:15 +00:00
11 lines
232 B
TypeScript
11 lines
232 B
TypeScript
|
import { defineConfig } from 'vitest/config'
|
||
|
import tsconfigPaths from 'vite-tsconfig-paths'
|
||
|
|
||
|
export default defineConfig({
|
||
|
plugins: [tsconfigPaths()],
|
||
|
test: {
|
||
|
name: 'Project Knedita',
|
||
|
env: { NODE_ENV: 'test' },
|
||
|
},
|
||
|
})
|