// @ts-check import wasm from 'vite-plugin-wasm'; import { watch } from 'vite-plugin-watch'; /** @type {import('vite').UserConfig} */ export default { plugins: [ wasm(), watch({ pattern: 'shell/src/**/*.rs', command: 'bun run dev-wasm', }), ], build: { target: 'esnext', }, };