-
Notifications
You must be signed in to change notification settings - Fork 45
/
webpack.dev.js
60 lines (53 loc) · 1.33 KB
/
webpack.dev.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
const path = require('path');
const CopyPlugin = require('copy-webpack-plugin');
const NodePolyfillPlugin = require("node-polyfill-webpack-plugin");
const config = {
resolve: {
extensions: [".tsx", ".ts", ".js"],
}
};
const indexConfig = Object.assign({}, config, {
entry: [ path.join(__dirname, './src/index.tsx')],
devtool: 'source-map',
output: {
path: path.resolve(__dirname, './es5/'),
filename: `index.js`,
libraryTarget: 'commonjs2'
},
module: {
rules: [
{
test: /\.tsx?$/,
include: path.resolve(__dirname, 'src'),
exclude: /(examples|node_modules|bower_components|bundle|lib)/,
loader: 'ts-loader',
},
{
test: /\.js?$/,
include: path.resolve(__dirname, 'src'),
exclude: /(examples|node_modules|bower_components|bundle|lib)/,
loader: 'babel-loader',
},
{
test: /\.css$/,
exclude: /examples|node_modules/,
use: [
"css-loader"
]
}
]
},
plugins: [
new CopyPlugin([
{ from: './src/mathjax/my-BaseMappings.js', to: './lib/mathjax/my-BaseMappings.js' },
]),
new NodePolyfillPlugin({
excludeAliases: ["console"]
})
],
externals: {
'react': 'commonjs react'
},
});
// Return Array of Configurations
module.exports = [ indexConfig ];