forked from cid-harvard/product-space
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdev.webpack.babel.js
91 lines (81 loc) · 1.75 KB
/
dev.webpack.babel.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
84
85
86
87
88
89
90
91
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const webpack = require('webpack');
const {
appContainerId,
outputDir,
outputHTMLFileName,
} = require('./build/buildConstants');
const babelLoader = {
loader: 'babel-loader',
options: {
presets: [
'react',
['@babel/preset-env', {
targets: {
browsers: ['last 1 Chrome version'],
},
modules: false,
debug: true,
}],
],
plugins: [
'@babel/plugin-proposal-object-rest-spread',
],
},
};
const typescriptPipeline = [
babelLoader,
{loader: 'ts-loader'},
];
export default function() {
return {
entry: './src/index',
devtool: 'source-map',
output: {
path: path.resolve(outputDir),
filename: '[name].js',
chunkFilename: '[name].js',
pathinfo: true,
},
resolve: {
extensions: ['.ts', '.tsx', '.js'],
},
module: {
rules: [
{
test: /\.(ts|tsx)$/,
use: typescriptPipeline,
exclude: path.resolve(__dirname, 'node_modules'),
},
{
test: /\.css$/,
use: [
'style-loader',
{
loader: 'css-loader',
options: {
modules: true,
importLoaders: 1,
localIdentName: '[local]---[path][name]',
},
},
],
},
],
},
plugins: [
new HtmlWebpackPlugin({
template: './src/dev.ejs',
appContainerId,
filename: outputHTMLFileName,
}),
new webpack.NamedModulesPlugin(),
new webpack.HotModuleReplacementPlugin(),
],
devServer: {
hot: true,
inline: true,
},
};
}