mirror of
https://github.com/codex-storage/codex-marketplace-ui.git
synced 2025-02-23 05:08:33 +00:00
9 lines
160 B
TypeScript
9 lines
160 B
TypeScript
|
/// <reference types="vitest" />
|
||
|
import { defineConfig } from 'vite'
|
||
|
|
||
|
export default defineConfig({
|
||
|
test: {
|
||
|
include: ["src/**/*.test.ts"]
|
||
|
},
|
||
|
})
|