-
Notifications
You must be signed in to change notification settings - Fork 2
/
angular.webpack.js
34 lines (30 loc) · 1015 Bytes
/
angular.webpack.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
/**
* Custom angular webpack configuration
*/
module.exports = (config, options) => {
config.target = 'electron-renderer';
if (options.customWebpackConfig.target) {
config.target = options.customWebpackConfig.target;
} else if (options.fileReplacements) {
for(let fileReplacement of options.fileReplacements) {
if (fileReplacement.replace !== 'src/environments/environment.ts') {
continue;
}
let fileReplacementParts = fileReplacement['with'].split('.');
if (['dev', 'prod', 'test', 'electron-renderer'].indexOf(fileReplacementParts[1]) < 0) {
config.target = fileReplacementParts[1];
}
break;
}
}
config.externals = {
...config.externals,
"fs": 'require("fs")',
"os": 'require("os")',
"path": 'require("path")',
"stream": 'require("stream")',
"constants": 'require("constants")',
"tslib": 'require("tslib")'
};
return config;
}