forked from stream-labs/desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
base.config.js
139 lines (130 loc) · 3.78 KB
/
base.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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
const path = require('path');
const plugins = [];
// uncomment and install to watch circular dependencies
// const CircularDependencyPlugin = require('circular-dependency-plugin');
// plugins.push(new CircularDependencyPlugin({
// // exclude detection of files based on a RegExp
// exclude: /a\.js|node_modules/,
// // add errors to webpack instead of warnings
// //failOnError: true
// }));
// uncomment and install to analyze bundle size
// const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
// plugins.push(new BundleAnalyzerPlugin());
module.exports = {
output: {
path: __dirname + '/bundles',
filename: '[name].js'
},
target: 'electron-renderer',
resolve: {
extensions: ['.js', '.ts', '.json', '.tsx'],
modules: [path.resolve(__dirname, 'app'), 'node_modules'],
symlinks: false,
},
// We want to dynamically require native addons
externals: {
'font-manager': 'require("font-manager")',
// Not actually a native addons, but for one reason or another
// we don't want them compiled in our webpack bundle.
'aws-sdk': 'require("aws-sdk")',
'asar': 'require("asar")',
'backtrace-node': 'require("backtrace-node")',
'node-fontinfo': 'require("node-fontinfo")',
'socket.io-client': 'require("socket.io-client")',
'rimraf': 'require("rimraf")',
'backtrace-js': 'require("backtrace-js")',
'request': 'require("request")',
'archiver': 'require("archiver")'
},
module: {
rules: [
{
test: /\.vue$/,
loader: 'vue-loader',
include: [path.resolve(__dirname, 'app/components'), path.resolve(__dirname, 'updater')],
options: {
esModule: true,
transformToRequire: {
video: 'src',
source: 'src'
},
}
},
{
test: /\.ts$/,
loader: 'ts-loader',
options: { experimentalWatchApi: true },
exclude: /node_modules|vue\/src/
},
{
test: /\.tsx$/,
include: path.resolve(__dirname, 'app/components'),
use: [
{ loader: 'babel-loader' },
{ loader: 'ts-loader', options: { appendTsxSuffixTo: [/\.vue$/], experimentalWatchApi: true } }
],
exclude: /node_modules/,
},
{
test: /\.js$/,
loader: 'babel-loader',
exclude: /node_modules/,
},
{
test: /\.m\.less$/, // Local style modules
include: path.resolve(__dirname, 'app/components'),
use: [
{ loader: 'style-loader' },
{
loader: 'css-loader',
options: { camelCase: true, localIdentName: '[local]___[hash:base64:5]', modules: true, importLoaders: 1 }
},
{ loader: 'less-loader' }
]
},
{
test: /\.g\.less$/, // Global styles
include: [
path.resolve(__dirname, 'app/app.g.less'),
path.resolve(__dirname, 'app/themes.g.less')
],
use: [
'style-loader',
{
loader: 'css-loader',
options: {
importLoaders: 1
}
},
'less-loader'
]
},
{
test: /\.(png|jpe?g|gif|svg|mp4|ico|wav|webm)(\?.*)?$/,
loader: 'file-loader',
options: {
name: '[name]-[hash].[ext]',
outputPath: 'media/',
publicPath: 'bundles/media/'
}
},
// Handles custom fonts. Currently used for icons.
{
test: /\.woff$/,
loader: 'file-loader',
options: {
name: '[name].[ext]',
outputPath: 'fonts/',
publicPath: 'bundles/fonts/'
}
},
// Used for loading WebGL shaders
{
test: /\.(vert|frag)$/,
loader: 'raw-loader'
}
]
},
plugins
};