forked from tzuser/redux-covenant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.base.js
executable file
·41 lines (40 loc) · 896 Bytes
/
webpack.base.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
const path = require('path');
const webpack = require('webpack');
module.exports = {
entry: {
index: path.resolve(__dirname, './src/index.js'),
},
output: {
path: path.resolve(__dirname, 'build'),
publicPath: '/',
filename: '[name].js',
globalObject: 'this',
library: 'redux-covenant', // string,
libraryTarget: 'umd', // univ
},
externals: {
redux: 'redux',
react: 'react',
'react-dom': 'react-dom',
'react-redux': 'react-redux',
},
module: {
rules: [
{
test: /\.(js|jsx)$/,
include: path.resolve(__dirname, 'src'),
use: [
{
loader: require.resolve('babel-loader'),
},
],
},
],
},
context: path.resolve(__dirname, 'src'),
resolve: {
extensions: ['.js', '.jsx', '.less', '.scss', '.css'],
modules: ['node_modules'],
},
plugins: [],
};