WebAssemblyのモジュールはただのバイト列です。まずはそれをブラウザで読み込む必要があります。
let file = await fetch('my_file.wasm'); let bytes = await file.arrayBuffer();