-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.demo.js
49 lines (49 loc) · 1.01 KB
/
webpack.config.demo.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
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
mode: 'development',
devtool: 'cheap-module-source-map',
entry: './src/demo/index.ts',
output: {
filename: 'index.js'
},
optimization: {
minimize: false
},
devServer: {
open: true,
hot: true,
host: 'localhost',
port: 9000
},
module: {
rules: [
{
test: /\.(m|j|t)s$/,
exclude: /(node_modules|bower_components)/,
use: {
loader: 'babel-loader'
}
},
{
test: /\.(sa|sc|c)ss$/,
use: [
MiniCssExtractPlugin.loader,
{ loader: 'css-loader', options: { sourceMap: true } }
]
}
]
},
plugins: [
new MiniCssExtractPlugin({
filename: 'css/index.css'
}),
new HtmlWebpackPlugin({
filename: 'index.html',
template: './src/demo/index.html'
})
],
resolve: {
extensions: ['.ts', '.js', '.json']
}
};