mirror of
				https://github.com/community-scripts/ProxmoxVE.git
				synced 2025-11-04 10:22:50 +00:00 
			
		
		
		
	
		
			
	
	
		
			11 lines
		
	
	
		
			296 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
		
		
			
		
	
	
			11 lines
		
	
	
		
			296 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 
								 | 
							
								import { defineConfig } from 'vitest/config'
							 | 
						||
| 
								 | 
							
								import react from '@vitejs/plugin-react'
							 | 
						||
| 
								 | 
							
								import tsconfigPaths from 'vite-tsconfig-paths'
							 | 
						||
| 
								 | 
							
								 
							 | 
						||
| 
								 | 
							
								export default defineConfig({
							 | 
						||
| 
								 | 
							
								  plugins: [tsconfigPaths(), react()],
							 | 
						||
| 
								 | 
							
								  test: {
							 | 
						||
| 
								 | 
							
								    environment: "jsdom",
							 | 
						||
| 
								 | 
							
								    setupFiles: ["src/__tests__/setupTests.ts"]
							 | 
						||
| 
								 | 
							
								  },
							 | 
						||
| 
								 | 
							
								})
							 |