mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-24 09:19:22 +01:00
* migration to Svelte 4 * feat: update peer dep * feat: update lockfile * Bump vitest and deps --------- Co-authored-by: joseph <josephrios56@gmail.com>
19 lines
370 B
TypeScript
19 lines
370 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
import { svelte } from '@sveltejs/vite-plugin-svelte'
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
svelte({
|
|
hot: false,
|
|
})
|
|
],
|
|
test: {
|
|
globals: true,
|
|
environment: 'jsdom',
|
|
setupFiles: './tests/setupVitest.ts',
|
|
alias: [
|
|
{ find: /^svelte$/, replacement: "svelte/internal" }
|
|
]
|
|
},
|
|
});
|