-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.debug-dev.nodejs.config.js
47 lines (44 loc) · 1.52 KB
/
webpack.debug-dev.nodejs.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// help: http://webpack.github.io/docs/configuration.html
// help: https://webpack.github.io/docs/webpack-dev-server.html#webpack-dev-server-cli
const fs = require('fs');
const path = require('path');
const webpack = require('webpack');
const nodeExternals = require('webpack-node-externals');
const entries = require('./webpack.entries');
const rules = require('./webpack.loaders');
const plugins = require('./webpack.plugins');
const config = {
mode: "development",
target: 'node', // help: https://webpack.github.io/docs/configuration.html#target
entry: entries.entry,
optimization: {
usedExports: true, // true to remove the dead code, for more https://webpack.js.org/guides/tree-shaking/
},
devtool: "source-map", // help: https://webpack.js.org/configuration/devtool/
devServer: {
hot: true,
},
externals: [nodeExternals()], // in order to ignore all modules in node_modules folder
output: {
path: path.resolve(__dirname, 'debug-ground/debug-dev-on-nodejs'),
filename: '[name].js',
},
resolve: {
alias: {},
extensions: [".webpack.js", ".web.js", ".ts", ".tsx", ".js", ".jsx"]
},
module: {
rules,
},
node: {
// universal app? place here your conditional imports for node env
fs: "empty",
path: "empty",
child_process: "empty",
},
plugins: [
new webpack.HotModuleReplacementPlugin(), // enable HMR globally
new webpack.NamedModulesPlugin(), // prints more readable module names in the browser console on HMR updates
].concat(plugins),
};
module.exports = config;