-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.js
More file actions
executable file
·66 lines (65 loc) · 1.63 KB
/
Copy pathwebpack.config.js
File metadata and controls
executable file
·66 lines (65 loc) · 1.63 KB
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
const path = require( 'path' );
const webpack = require( 'webpack' );
const HtmlWebpackPlugin = require( 'html-webpack-plugin' );
const ForkTsCheckerWebpackPlugin = require( 'fork-ts-checker-webpack-plugin' );
module.exports = ( env ) => {
return {
entry: [ './src/index.tsx', './src/assets/main.scss' ],
resolve: {
extensions: [ '.ts', '.tsx', '.js' ],
alias: {
components: path.resolve( __dirname, './src/App/components/' ),
},
},
output: {
path: path.resolve( __dirname, 'public' ),
filename: 'assets/js/bundle.min.js',
},
module: {
rules: [
{ test: /\.scss$/,
use: [
{
loader: 'file-loader',
options: {
name: 'assets/css/[name].css',
},
},
{
loader: 'extract-loader',
},
{
loader: 'css-loader?-url',
},
{
loader: 'sass-loader',
},
],
},
{
test: /\.tsx?$/,
loader: 'ts-loader',
options: {
// disable type checker - we will use it in fork plugin
transpileOnly: true,
},
exclude: /assets/,
},
],
},
devServer: {
host: 'localhost',
port: 8080,
open: true,
},
plugins: [
new HtmlWebpackPlugin( {
template: './public/index.html',
} ),
new webpack.DefinePlugin( {
'process.env.development': !!( env && !env.production ),
} ),
new ForkTsCheckerWebpackPlugin( { eslint: true } ),
],
};
};