-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwebpack.config.js
83 lines (78 loc) · 2.95 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
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
var path = require("path");
var webpack = require("webpack");
var UglifyJsPlugin = require('uglifyjs-webpack-plugin');
var config = {
mode: 'production',
// These are the entry point of our library. We tell webpack to use the name we assign later, when creating the bundle.
// We also use the name to filter the second entry point for applying code minification via UglifyJS
entry: {
'angular-logger2.umd': './src/index.ts',
'angular-logger2.umd.min': './src/index.ts'
},
// The output defines how and where we want the bundles. The special value `[name]` in `filename` tell Webpack to use the name we defined above.
// We target a UMD and name it MyLib. When including the bundle in the browser it will be accessible at `window.MyLib`
output: {
path: path.resolve(__dirname, 'dist-umd'),
filename: '[name].js',
libraryTarget: 'umd',
library: 'AngularLogger2',
umdNamedDefine: true
},
// Add resolve for `tsx` and `ts` files, otherwise Webpack would only look for common JavaScript file extension (.js)
resolve: {
extensions: ['.ts', '.tsx', '.js']
},
externals: {
'sprintf-js': 'sprintf-js',
'moment': 'moment',
'@angular/core': {root: ['ng', 'core'], commonjs: '@angular/core', commonjs2: '@angular/core', amd: '@angular/core'},
'rxjs/Rx': {root: 'Rx', commonjs: 'rxjs/Rx', commonjs2: 'rxjs/Rx', amd: 'rxjs/Rx'},
'rxjs/add/operator/let': {
root: ['Rx', 'Observable', 'prototype'],
commonjs: 'rxjs/add/operator/let',
commonjs2: 'rxjs/add/operator/let',
amd: 'rxjs/add/operator/let'
}
},
// Activate source maps for the bundles in order to preserve the original source when the user debugs the application
devtool: 'source-map',
optimization: {
minimizer: [
// Apply minification only on the second bundle by using a RegEx on the name, which must end with `.min.js`
// NB: Remember to activate sourceMaps in UglifyJsPlugin since they are disabled by default!
new UglifyJsPlugin({
sourceMap: true,
include: /\.min\.js$/,
uglifyOptions: { compress: false }
})
]
},
plugins: [
new webpack.ContextReplacementPlugin(
// The (\\|\/) piece accounts for path separators in *nix and Windows
/\@angular(\\|\/)core(\\|\/)esm5/,
path.resolve(__dirname, './src'), {}
)
],
module: {
rules: [
{
test: /\.ts$/,
use: [
{loader: 'awesome-typescript-loader'}
]
}
]
},
node: {
global: true,
crypto: 'empty',
__dirname: true,
__filename: true,
process: true,
Buffer: false,
clearImmediate: false,
setImmediate: false
},
};
module.exports = config;