forked from getstation/desktop-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.base.js
107 lines (98 loc) · 2.54 KB
/
webpack.config.base.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/*
* This file should only be used if using webpack directly and not through `electron-webpack`
*/
const path = require('path');
const TerserPlugin = require('terser-webpack-plugin');
module.exports = (env, argv) => {
/**
* @type {webpack.Configuration}
*/
const conf = {
context: path.resolve(__dirname), // to automatically find tsconfig.json
devtool: 'cheap-module-source-map',
resolve: {
alias: { '@src': path.resolve(__dirname, 'appstore/src/') },
extensions: ['.ts', '.tsx', '.js', '.jsx', '.json', '.mjs', '.svg'],
},
node: {
// The dirname of the output file when run in a Node.js environment.
__dirname: false,
// The filename of the output file when run in a Node.js environment.
__filename: false,
},
module: {
rules: [
{
test: /\.tsx?$/,
exclude: /node_modules/,
loader: 'ts-loader',
options: {
// disable type checker - we will use it in fork plugin
transpileOnly: true
}
},
{
test: /\.jsx?$/,
exclude: /node_modules/,
use: [
{
loader: 'babel-loader',
options: {
presets: ['@babel/preset-env']
}
}
]
},
{
test: /\.svg$/,
loader: 'svg-inline-loader'
},
{
test: /\.graphql$/,
exclude: /node_modules/,
loader: 'graphql-import-loader'
},
{ // fixes https://github.com/graphql/graphql-js/issues/1272
test: /\.mjs$/,
include: /node_modules/,
type: 'javascript/auto'
},
{
test: /\.css$/,
use: ['style-loader', 'css-loader']
},
{
test: /\.(woff2?|eot|ttf|otf|png|jpg|gif)(\?.*)?$/,
loader: 'url-loader',
}
]
},
};
if (argv.mode === 'production') {
conf.optimization = {
minimizer: [
new TerserPlugin({
terserOptions: {
ecma: undefined,
warnings: false,
parse: {},
compress: false,
mangle: true,
module: false,
output: null,
toplevel: false,
nameCache: null,
ie8: false,
keep_classnames: true,
keep_fnames: true,
safari10: false,
},
sourceMap: true,
parallel: true,
}),
],
};
conf.devtool = 'source-map';
}
return conf;
};