wasm-bindgen/examples/wasm-in-wasm/webpack.config.js
Alex Crichton 4716752991 Add an example of namespaced APIs
By creating wasm modules from Rust!
2018-03-22 17:39:48 -07:00

11 lines
184 B
JavaScript

const path = require('path');
module.exports = {
entry: "./index.js",
output: {
path: path.resolve(__dirname, "dist"),
filename: "index.js",
},
mode: "development"
};