🔧 test environment setup updated

This commit is contained in:
Paul Valerie GOMA 2025-07-30 02:03:51 +02:00
parent 717c5f8e6e
commit 80e2c6e358

View File

@ -1,10 +1,10 @@
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vitest/config'
import vue from '@vitejs/plugin-vue'
import vueDevTools from 'vite-plugin-vue-devtools'
import path from 'path'
// vite.config.ts
import { fileURLToPath, URL } from 'node:url';
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
import vueDevTools from 'vite-plugin-vue-devtools';
import path from 'path';
// https://vite.dev/config/
export default defineConfig({
plugins: [
vue(),
@ -13,12 +13,23 @@ export default defineConfig({
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url)),
'@visua': path.resolve(__dirname, './node_modules/@cellule-financiere-pmo/visua/output')
'@visua': path.resolve(__dirname, './node_modules/@cellule-financiere-pmo/visua/output'),
},
},
test: {
globals: true,
environment: 'jsdom',
include: ['test/**/*.spec.ts'],
}
})
build: {
lib: {
entry: path.resolve(__dirname, 'src/index.ts'),
name: 'VisuaVue',
fileName: 'visua-vue',
formats: ['es', 'umd'],
},
rollupOptions: {
external: ['vue'],
output: {
globals: {
vue: 'Vue',
},
},
},
},
});