forked from kriasoft/graphql-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.js
More file actions
54 lines (45 loc) · 1.16 KB
/
webpack.config.js
File metadata and controls
54 lines (45 loc) · 1.16 KB
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
48
49
50
51
52
53
54
/**
* Webpack configuration
*
* @see https://webpack.js.org/configuration/
* @copyright 2016-present Kriasoft (https://git.io/vMINh)
*/
const path = require("path");
/**
* @param {Record<string, boolean> | undefined} env
* @param {{ mode: 'production' | 'development' }} options
* @returns {import('webpack').Configuration}
*/
module.exports = function config(env, options) {
const isEnvProduction = options.mode === "production";
const isEnvDevelopment = options.mode === "development";
process.env.BABEL_ENV = options.mode;
return {
mode: options.mode,
target: "webworker",
bail: isEnvProduction,
entry: "./src/main.ts",
output: {
path: isEnvProduction ? path.resolve(__dirname, "dist") : undefined,
pathinfo: isEnvDevelopment,
filename: "[name].js",
},
devtool: "source-map",
optimization: {
minimize: isEnvProduction,
},
module: {
rules: [
{
test: /\.tsx?$/,
exclude: /node_modules/,
loader: "babel-loader",
options: {
cacheDirectory: true,
cacheCompression: true,
},
},
],
},
};
};