-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.config.js
executable file
·83 lines (82 loc) · 1.74 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
// eslint-disable-next-line import/no-extraneous-dependencies
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
module.exports = {
name: 'library',
mode: 'production',
entry: [`${__dirname}/src/components/index.ts`],
output: {
path: `${__dirname}/dist`,
filename: 'franklin-components.js',
libraryTarget: 'commonjs',
clean: true,
},
devtool: 'source-map',
externals: {
react: 'react',
'react-dom': 'react-dom',
},
resolve: {
extensions: ['.jsx', '.js', '.tsx', '.ts'],
},
module: {
rules: [
{
test: /\.(j|t)sx?$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader',
options: {
cacheDirectory: true,
},
},
},
{
test: /\.(scss|sass|css)$/,
sideEffects: true,
use: [
{
loader: MiniCssExtractPlugin.loader,
},
{
loader: 'css-loader',
options: {
esModule: false,
},
},
{
loader: 'sass-loader',
},
],
},
{
test: /\.svg$/i,
issuer: /\.(j|t)sx?$/,
use: [
{
loader: '@svgr/webpack',
},
],
},
{
test: /\.svg$/i,
issuer: /\.(css|scss)?$/,
loader: 'svg-url-loader',
},
],
},
plugins: [
new BundleAnalyzerPlugin({
analyzerMode: 'disabled',
generateStatsFile: true,
statsOptions: { source: false },
}),
new MiniCssExtractPlugin({
filename: 'franklin.css',
}),
],
stats: {
children: false,
assetsSort: '!size',
},
};