1
0
mirror of https://github.com/fluencelabs/wasm-bindgen synced 2025-06-26 19:21:35 +00:00
Files
.cargo
crates
examples
add
asm.js
char
closures
comments
src
Cargo.toml
README.md
build.sh
index.html
index.js
package.json
webpack.config.js
console_log
dom
hello_world
import_js
julia_set
math
no_modules
performance
smorgasboard
wasm-in-wasm
README.md
guide
releases
src
tests
.appveyor.yml
.eslintignore
.eslintrc
.gitattributes
.gitignore
.travis.yml
CHANGELOG.md
CONTRIBUTING.md
Cargo.toml
LICENSE-APACHE
LICENSE-MIT
README.md
package-lock.json
package.json
yarn.lock
wasm-bindgen/examples/comments/webpack.config.js

12 lines
228 B
JavaScript
Raw Normal View History

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