generated from fatmali/openmrs-esm-home
-
Notifications
You must be signed in to change notification settings - Fork 6
/
webpack.config.js
90 lines (87 loc) · 2.09 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
84
85
86
87
88
89
90
const path = require("path");
const CleanWebpackPlugin = require("clean-webpack-plugin").CleanWebpackPlugin;
const ForkTsCheckerWebpackPlugin = require("fork-ts-checker-webpack-plugin");
const { BundleAnalyzerPlugin } = require("webpack-bundle-analyzer");
const { peerDependencies } = require("./package.json");
const cssLoader = {
loader: "css-loader",
options: {
modules: {
mode: resourcePath => {
if (
/.*react-html5-camera-photo\/build\/css\/index.css/i.test(
resourcePath
) ||
/styles.css$/i.test(resourcePath)
) {
return "global";
}
return "local";
},
localIdentName:
"esm-patient-chart-widgets__[name]__[local]___[hash:base64:5]"
}
}
};
module.exports = env => ({
entry: [
path.resolve(__dirname, "src/set-public-path.ts"),
path.resolve(__dirname, "src/index.ts")
],
output: {
filename: "ampath-esm-patient-chart-widgets.js",
libraryTarget: "system",
path: path.resolve(__dirname, "dist"),
jsonpFunction: "webpackJsonp_ampath_esm_patient_chart_widgets"
},
module: {
rules: [
{
parser: {
system: false
}
},
{
test: /\.m?(js|ts|tsx)$/,
exclude: /(node_modules|bower_components)/,
use: {
loader: "babel-loader"
}
},
{
test: /\.css$/,
use: ["style-loader", cssLoader]
},
{
test: /\.s[ac]ss$/i,
use: ["style-loader", cssLoader, "sass-loader"]
},
{
test: /\.(png|jpe?g|gif)$/i,
use: [
{
loader: "file-loader"
}
]
}
]
},
devtool: "sourcemap",
devServer: {
headers: {
"Access-Control-Allow-Origin": "*"
},
disableHostCheck: true
},
externals: Object.keys(peerDependencies),
plugins: [
new ForkTsCheckerWebpackPlugin(),
new CleanWebpackPlugin(),
new BundleAnalyzerPlugin({
analyzerMode: env && env.analyze ? "server" : "disabled"
})
],
resolve: {
extensions: [".tsx", ".ts", ".jsx", ".js"]
}
});