mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-16 19:47:41 +01:00
* Ignore linting for examples in docs * Formatting JSX single attribute per line * Separte `format` and `lint:format` in package.json * Bump prettier version * Run format
20 lines
396 B
TypeScript
20 lines
396 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
import vue from '@vitejs/plugin-vue2';
|
|
|
|
export default defineConfig({
|
|
plugins: [vue()],
|
|
test: {
|
|
globals: true,
|
|
environment: 'jsdom',
|
|
transformMode: {
|
|
web: [/\.jsx?$/],
|
|
},
|
|
setupFiles: './tests/setupVitest.js',
|
|
threads: false,
|
|
isolate: false,
|
|
},
|
|
resolve: {
|
|
conditions: ['development', 'browser'],
|
|
},
|
|
});
|