mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-12-28 20:43:23 +03:00
12 lines
210 B
JavaScript
12 lines
210 B
JavaScript
|
const path = require('path');
|
||
|
|
||
|
module.exports = {
|
||
|
entry: "./index.js",
|
||
|
output: {
|
||
|
path: path.resolve(__dirname, "dist"),
|
||
|
filename: "index.js",
|
||
|
},
|
||
|
mode: "development",
|
||
|
devtool: 'source-map',
|
||
|
};
|