mirror of
https://github.com/enso-org/enso.git
synced 2024-11-27 18:12:31 +03:00
16 lines
268 B
TypeScript
16 lines
268 B
TypeScript
|
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'],
|
||
|
},
|
||
|
})
|