forked from firefox-devtools/debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
46 lines (38 loc) · 1.23 KB
/
webpack.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
const toolbox = require("./node_modules/devtools-launchpad/index");
const getConfig = require("./bin/getConfig");
const path = require("path");
const projectPath = path.join(__dirname, "src");
/*
* builds a path that's relative to the project path
* returns an array so that we can prepend
* hot-module-reloading in local development
*/
function getEntry(filename) {
return [path.join(projectPath, filename)];
}
function buildConfig(envConfig) {
const webpackConfig = {
entry: {
debugger: getEntry("main.js"),
"source-map-worker": getEntry("utils/source-map-worker.js"),
"pretty-print-worker": getEntry("utils/pretty-print-worker.js"),
"integration-tests": getEntry("test/integration/tests.js"),
},
output: {
path: path.join(__dirname, "assets/build"),
filename: "[name].js",
publicPath: "/assets/build",
library: "Debugger"
},
resolve: {
alias: {
"react-dom": "react-dom/dist/react-dom",
"devtools/client/shared/vendor/react": "react",
"devtools/client/shared/vendor/react-dom": "react-dom",
}
}
};
return toolbox.toolboxConfig(webpackConfig, envConfig);
}
const envConfig = getConfig();
module.exports = buildConfig(envConfig);