mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-16 06:37:42 +01:00
* update deps and vitest * dedupe packages * update package.json files * Update to latest vite and vites * Fix build * Update lockfile
15 lines
292 B
TypeScript
15 lines
292 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
import preact from '@preact/preset-vite'
|
|
|
|
export default defineConfig({
|
|
plugins: [preact()],
|
|
test: {
|
|
globals: true,
|
|
environment: 'jsdom',
|
|
setupFiles: './tests/setupVitest.js',
|
|
},
|
|
resolve: {
|
|
mainFields: ['module'],
|
|
},
|
|
});
|