mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-06-24 10:11:34 +00:00
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
11 lines
184 B
JavaScript
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"
|
||
|
};
|