1
0
mirror of https://github.com/fluencelabs/wasm-bindgen synced 2025-06-24 10:11:34 +00:00
Files
crates
examples
add
asm.js
closures
console_log
dom
hello_world
math
src
.gitignore
Cargo.toml
README.md
build.sh
index.html
index.js
package.json
webpack.config.js
no_modules
performance
smorgasboard
wasm-in-wasm
README.md
src
tests
.appveyor.yml
.gitignore
.travis.yml
CONTRIBUTING.md
Cargo.toml
DESIGN.md
LICENSE-APACHE
LICENSE-MIT
README.md
package.json
wasm-bindgen/examples/math/webpack.config.js

11 lines
184 B
JavaScript
Raw Normal View History

2018-03-21 10:03:40 -07:00
const path = require('path');
module.exports = {
entry: "./index.js",
output: {
path: path.resolve(__dirname, "dist"),
filename: "index.js",
},
mode: "development"
};