forked from AzureAD/microsoft-authentication-library-for-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
60 lines (56 loc) · 1.5 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
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
const path = require("path");
const webpack = require("webpack");
const TerserPlugin = require("terser-webpack-plugin");
const package = require("./package");
const ForkTsCheckerWebpackPlugin = require("fork-ts-checker-webpack-plugin");
const PATHS = {
entryPoint: path.resolve(__dirname, "src/index.ts"),
bundles: path.resolve(__dirname, "dist"),
};
module.exports = {
mode: "production",
entry: {
"msal": [PATHS.entryPoint],
"msal.min": [PATHS.entryPoint]
},
output: {
path: PATHS.bundles,
filename: "[name].js",
libraryTarget: "umd",
library: "Msal",
umdNamedDefine: true
},
resolve: {
extensions: [".ts", ".tsx", ".js"]
},
devtool: "source-map",
plugins: [
new ForkTsCheckerWebpackPlugin(),
new webpack.BannerPlugin({
banner: `/*! ${package.name} v${package.version} ${new Date().toISOString().split("T")[0]} */\n'use strict';`,
raw: true
})
],
optimization: {
minimize: true,
minimizer: [new TerserPlugin({
include: /\.min\.js$/,
extractComments: false
})]
},
module: {
rules: [{
test: /\.(ts|tsx|js)?$/,
use: {
loader: "ts-loader",
options: {
transpileOnly: true,
}
}
}]
}
};