mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2024-11-24 18:36:14 +03:00
37 lines
941 B
TypeScript
37 lines
941 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
import vue from '@vitejs/plugin-vue2'
|
|
import Components from 'unplugin-vue-components/vite'
|
|
import { VuetifyResolver } from 'unplugin-vue-components/resolvers'
|
|
import { fileURLToPath, URL } from 'node:url'
|
|
|
|
export default defineConfig({
|
|
resolve: {
|
|
alias: {
|
|
'@': fileURLToPath(new URL('./src', import.meta.url)),
|
|
'~': fileURLToPath(new URL('./node_modules', import.meta.url))
|
|
}
|
|
},
|
|
plugins: [
|
|
vue(),
|
|
Components({
|
|
dts: false,
|
|
directives: false,
|
|
resolvers: [VuetifyResolver()],
|
|
types: [
|
|
{
|
|
from: 'vue-router',
|
|
names: ['RouterLink', 'RouterView']
|
|
}
|
|
]
|
|
})
|
|
],
|
|
test: {
|
|
// https://vitest.dev/guide/#configuring-vitest
|
|
globals: true,
|
|
globalSetup: [fileURLToPath(new URL('./vitest/setup.ts', import.meta.url))],
|
|
environment: 'jsdom',
|
|
deps: {
|
|
inline: ['vuetify']
|
|
}
|
|
}
|
|
})
|