swc/crates/binding_core_wasm/example/webpack.config.js
2022-05-04 14:25:28 +00:00

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",
};