js-libp2p-noise/webpack.config.js

20 lines
320 B
JavaScript
Raw Permalink Normal View History

2020-02-06 09:52:33 +01:00
module.exports = {
entry: "./src/index.ts",
mode: "production",
output: {
filename: "dist/bundle.js"
},
node: {
fs: "empty"
},
resolve: {
extensions: [".ts", ".js"],
},
module: {
rules: [
{test: /\.ts$/, use: {loader: "ts-loader", options: {transpileOnly: true}}}
],
},
};