-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwebpack.config.js
70 lines (66 loc) · 1.64 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
const fs = require('fs');
const path = require('path');
const webpack = require('webpack');
const BabelMinifyPlugin = require('babel-minify-webpack-plugin');
const packageJson = require('./package.json');
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin
const babelConfig = JSON.parse(fs.readFileSync('./.babelrc'));
/* Environment */
const environment = process.env.NODE_ENV;
const PRODUCTION = (environment === 'production');
function getBabelConfig() {
if (PRODUCTION) {
babelConfig.presets[0][1].modules = false;
}
return babelConfig;
}
module.exports = {
mode: environment || 'development',
entry: path.resolve(__dirname, packageJson.source),
output: {
path: __dirname,
filename: packageJson.main,
library: packageJson.libraryName,
libraryTarget: 'umd',
umdNamedDefine: true
},
plugins: [
new webpack.ProvidePlugin({
'process.env.NODE_ENV': JSON.stringify(environment)
}),
PRODUCTION && new BabelMinifyPlugin({
removeConsole: true,
mangle: {
topLevel: true
}
}),
].filter(Boolean),
module: {
rules: [
{
test: /\.tsx?$/i,
exclude: /node_modules/,
use: [
{
loader: 'babel-loader',
options: Object.assign({}, {
cacheDirectory: true
}, getBabelConfig())
},
{
loader: 'awesome-typescript-loader'
},
{
loader: 'tslint-loader',
options: {
emitErrors: PRODUCTION
}
}
]
}
]
},
resolve: {
extensions: ['.ts', '.js']
}
};