-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathwebpack.config.js
43 lines (42 loc) · 1.09 KB
/
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
const path = require('path');
const ProgressBarPlugin = require('progress-bar-webpack-plugin');
module.exports = {
resolve: {
extensions: ['.js', '.jsx', '.ts', '.tsx', '.json']
},
plugins: [new ProgressBarPlugin()],
module: {
rules: [
{
test: /\.[jt]sx?$/,
include: [path.resolve(__dirname, 'src'), path.resolve(__dirname, 'styleguide')],
use: [
{
loader: 'babel-loader',
options: {
presets: ['@babel/preset-env', '@babel/preset-react']
}
},
{
loader: 'ts-loader',
options: {
configFile: require('path').resolve(__dirname, 'tsconfig.json')
}
}
]
},
{
test: /\.css$/,
use: ['style-loader', { loader: 'css-loader', options: { modules: true } }]
},
{
test: /\.scss$/,
use: ['style-loader', 'css-loader', 'sass-loader']
},
{
test: /\.(png|jpg|gif)$/,
use: [{ loader: 'file-loader', options: { name: '[name].[ext]' } }]
}
]
}
};