enso/app/ydoc-shared/vitest.config.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
268 B
TypeScript
Raw Normal View History

import wasm from 'vite-plugin-wasm'
import { defineConfig } from 'vitest/config'
export default defineConfig({
plugins: [wasm()],
build: {
lib: {
entry: 'src/index.ts',
formats: ['es'],
},
},
resolve: {
conditions: ['source'],
},
})