-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathmodelcomparison.webpack.config.js
73 lines (71 loc) · 1.93 KB
/
modelcomparison.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
const webpack = require('webpack');
const path = require('path');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const ReactRefreshPlugin = require('@pmmmwh/react-refresh-webpack-plugin');
const isDevelopment = process.env.NODE_ENV !== 'production';
module.exports = {
mode: isDevelopment ? 'development' : 'production',
entry: ['./widgets/modelcomparison/index.tsx'],
devtool: 'eval-source-map',
performance: {
hints: false
},
watch: false,
plugins: [
new webpack.ProvidePlugin({
$: "jquery",
jQuery: "jquery"
}),
new MiniCssExtractPlugin({
filename: 'widget.css'
}),
isDevelopment && new HtmlWebpackPlugin({
template: './development/model-comparison/index.html'
}),
isDevelopment && new ReactRefreshPlugin()
].filter(Boolean),
module: {
rules: [
{
test: /\.ts(x?)$/,
exclude: /node_modules/,
use: [
isDevelopment && {
loader: 'babel-loader',
options: { plugins: ['react-refresh/babel'] }
},
{
loader: "ts-loader"
}
].filter(Boolean)
},
// All output '.js' files will have any sourcemaps re-processed by 'source-map-loader'.
{
enforce: "pre",
test: /\.js$/,
loader: "source-map-loader"
},
{
test: /\.css$/,
use: [
isDevelopment && 'style-loader',
!isDevelopment && MiniCssExtractPlugin.loader,
'css-loader'
].filter(Boolean)
}
]
},
resolve: {
extensions: ['*', '.js', '.jsx', '*.ts', '*.tsx']
},
output: {
path: path.resolve(__dirname, 'backwardcompatibilityml/widgets/model_comparison/resources'),
publicPath: '/',
filename: 'widget-build.js'
},
devServer: {
contentBase: path.resolve(__dirname, "development/model-comparison"),
port: 3000
}
};