12 lines
275 B
TypeScript
12 lines
275 B
TypeScript
/// <reference types="vitest" />
|
|
|
|
// Configure Vitest (https://vitest.dev/config/)
|
|
|
|
import { defineConfig } from 'vite'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
/* for example, use global to avoid globals imports (describe, test, expect): */
|
|
// globals: true,
|
|
},
|
|
}) |