mirror of
https://github.com/enso-org/enso.git
synced 2024-11-22 22:10:15 +03:00
b286adaae4
# Important Notes The command to run the gui dev environment has been changed. Invoking the old command will print a message about that. From now on, use `pnpm dev:gui2` in repository root.
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'],
|
|
},
|
|
})
|