forked from IgniteUI/igniteui-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack-umd.config.ts
109 lines (103 loc) · 2.87 KB
/
webpack-umd.config.ts
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
import * as fs from "fs";
import * as path from "path";
import * as webpack from "webpack";
import * as angularExternals from "webpack-angular-externals";
import * as rxjsExternals from "webpack-rxjs-externals";
export default {
entry: {
"index.umd": ["./src/main.ts", "./src/services/index.ts"],
"index.umd.min": ["./src/main.ts", "./src/services/index.ts"]
},
output: {
path: path.join(__dirname, "dist"),
filename: "[name].js",
libraryTarget: "umd",
library: "igniteui-angular"
},
resolve: {
extensions: [".ts", ".js", ".json"]
},
externals: [
function(context, request, callback) {
if (/^jszip/i.test(request)) {
return callback(null, {
commonjs: request,
commonjs2: request,
amd: request
});
}
callback();
},
angularExternals(),
rxjsExternals()
],
devtool: "source-map",
module: {
rules: [
{
test: /\.ts$/,
use: [
{
loader: "awesome-typescript-loader",
options: {
configFileName: "tsconfig.json"
}
},
{
loader: "angular2-template-loader"
}
],
exclude: [
/node_modules/,
/\.(spec|e2e)\.ts$/
]
},
{
test: /\.json$/,
use: "json-loader"
},
{
test: /\.css$/,
use: [
{
loader: "to-string-loader"
},
{
loader: "css-loader",
options: { minimize: true }
}
]
},
{
test: /\.scss$/,
use: [
{
loader: "to-string-loader",
},
{
loader: "css-loader",
options: { minimize: true }
},
{
loader: "sass-loader"
}
]
},
{
test: /\.html$/,
use: "raw-loader"
}
]
},
plugins: [
new webpack.ContextReplacementPlugin(
/angular(\\|\/)core(\\|\/)@angular/,
path.join(__dirname, "src")
),
new webpack.optimize.UglifyJsPlugin({
include: /\.min\.js$/,
sourceMap: true,
compress: true
})
]
} as webpack.Configuration;