forked from iannbing/react-simple-tree-menu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.common.js
68 lines (67 loc) · 1.74 KB
/
webpack.common.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
const path = require('path');
const CleanWebpackPlugin = require('clean-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
module.exports = {
mode: 'none',
entry: { main: ['./src/index.tsx'] },
output: {
path: path.resolve(__dirname, 'dist'),
filename: '[name].js',
library: 'ReactSimpleTreeMenu',
libraryTarget: 'umd',
publicPath: '/dist/',
umdNamedDefine: true,
globalObject: `typeof self !== 'undefined' ? self : this`,
},
module: {
rules: [
{
test: /\.(t|j)sx?$/,
loader: 'awesome-typescript-loader',
exclude: path.resolve(__dirname, 'node_modules/'),
options: {
silent: true,
configFileName: './tsconfig.json',
useBabel: true,
babelCore: '@babel/core',
},
},
{ enforce: 'pre', test: /\.js$/, loader: 'source-map-loader' },
{
test: /\.scss$/,
use: [
{
loader: MiniCssExtractPlugin.loader,
},
'css-loader',
'sass-loader',
],
},
{
test: /\.svg$/,
loader: 'svg-inline-loader',
},
{
test: /\.(jpe?g|png|gif|ico)$/i,
loader: 'file?name=[name].[ext]',
},
],
},
resolve: {
modules: ['node_modules'],
extensions: ['*', '.ts', '.tsx', '.js', '.jsx'],
alias: {
react: path.resolve(__dirname, './node_modules/react'),
'react-dom': path.resolve(__dirname, './node_modules/react-dom'),
assets: path.resolve(__dirname, 'assets'),
},
},
plugins: [
new CleanWebpackPlugin(['dist']),
new MiniCssExtractPlugin({
filename: '[name].css',
chunkFilename: '[id].css',
}),
],
externals: ['react', 'react-dom'],
};