-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathwebpack.config.js
More file actions
129 lines (115 loc) · 3.64 KB
/
webpack.config.js
File metadata and controls
129 lines (115 loc) · 3.64 KB
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
const webpack = require('webpack');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const {CleanWebpackPlugin} = require('clean-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const path = require('path');
// Shared css-loader config - don't process absolute URLs since they reference files copied to dist
const cssLoaderConfig = {
loader: 'css-loader',
options: {
url: {
filter: (url) => !url.startsWith('/'),
},
modules: 'icss',
},
};
const config = {
entry: {
examples: './examples/index.js',
'superdesk-ui': './app/index.js',
},
output: {
path: path.resolve(__dirname, 'dist'),
filename: '[name].bundle.js',
libraryTarget: 'umd',
chunkFilename: '[name].chunk.js',
},
resolve: {
extensions: ['.js', '.jsx', '.ts', '.tsx', '.json'],
alias: {
'superdesk-ui': path.resolve(__dirname, './app'),
'react-resizable-panels': path.resolve(
__dirname,
'./node_modules/react-resizable-panels/dist/react-resizable-panels.development.js',
),
},
},
module: {
rules: [
{
test: /\.(ts|tsx|js|jsx)$/,
loader: 'ts-loader',
exclude: (absolutePath) => {
// date-fns uses optional chaining and nullish coalescing
// that crashes the build unless passed though the loader
if (
absolutePath.includes('/node_modules/date-fns/') ||
absolutePath.includes('/node_modules/@date-fns/tz/')
) {
return false;
}
return absolutePath.includes('/node_modules/');
},
options: {
transpileOnly: true,
},
},
{
test: /\.scss$/,
use: [MiniCssExtractPlugin.loader, cssLoaderConfig, 'sass-loader'],
},
{
test: /\.css$/,
use: [MiniCssExtractPlugin.loader, cssLoaderConfig],
},
{
test: /\.html$/,
type: 'javascript/auto',
loader: 'raw-loader',
options: {
esModule: false,
},
},
{
test: /\.(png|gif|jpeg|jpg|woff|woff2|eot|ttf|svg)(\?.*$|$)/,
type: 'asset/resource',
generator: {
filename: '[name][ext]',
},
},
],
},
plugins: [
new CleanWebpackPlugin({
cleanOnceBeforeBuildPatterns: ['dist', 'react'],
}),
new HtmlWebpackPlugin({
template: 'examples/index.html',
chunks: ['examples', 'superdesk-ui'],
}),
new CopyWebpackPlugin({
patterns: [
{from: 'examples/img/', to: ''},
{from: 'examples/pages/', to: ''},
],
}),
new MiniCssExtractPlugin({
filename: '[name].bundle.css',
}),
new webpack.ProvidePlugin({
$: 'jquery',
'window.$': 'jquery',
jQuery: 'jquery',
'window.jQuery': 'jquery',
}),
],
// Webpack 5 filesystem cache for faster rebuilds
cache: {
type: 'filesystem',
buildDependencies: {
config: [__filename],
},
},
};
module.exports = config;