forked from learn-anything/react-mindmap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
51 lines (48 loc) · 944 Bytes
/
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
module.exports = {
entry: './src/index.jsx',
output: {
path: `${__dirname}/dist`,
filename: 'index.js',
libraryTarget: 'umd',
library: 'MindMap',
},
module: {
loaders: [
{
enforce: 'pre',
test: /\.jsx?$/,
exclude: /node_modules/,
loader: 'eslint-loader',
},
{
test: /\.jsx?$/,
loader: 'babel-loader',
},
{
test: /\.sass$/,
exclude: /node_modules/,
loader: ['style-loader', 'css-loader', 'postcss-loader', 'sass-loader'],
},
],
},
externals: {
react: {
root: 'React',
commonjs2: 'react',
commonjs: 'react',
amd: 'react',
},
'react-dom': {
root: 'ReactDOM',
commonjs2: 'react-dom',
commonjs: 'react-dom',
amd: 'react-dom',
},
/*d3: {
root: 'd3',
commonjs2: 'd3',
commonjs: 'd3',
amd: 'd3',
},*/
},
};