mirror of
https://github.com/loro-dev/loro.git
synced 2024-11-28 09:25:36 +00:00
12 lines
238 B
TypeScript
12 lines
238 B
TypeScript
import { configDefaults, defineConfig } from 'vitest/config'
|
|
import wasm from "vite-plugin-wasm";
|
|
|
|
export default defineConfig({
|
|
plugins: [wasm()],
|
|
test: {
|
|
exclude: [
|
|
...configDefaults.exclude,
|
|
"deno/*"
|
|
]
|
|
},
|
|
});
|