swc/bindings/binding_core_wasm/example/webpack.config.js

11 lines
201 B
JavaScript

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