-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
60 lines (55 loc) · 1.27 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
var autoprefixer = require('autoprefixer');
var path = require('path');
var webpack = require('webpack');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
var babelOptions = {
"presets": [
"react",
"es2016"
]
};
module.exports = {
devtool: 'source-map',
cache: true,
entry: {
main: path.resolve(__dirname, 'assets/components/Master/index.tsx'),
vendor: [
'react',
'react-dom',
'marked',
]
},
resolve: {
extensions: ['.ts', '.tsx', '.js', '.jsx']
},
output: {
filename: '[name].js',
chunkFilename: '[chunkhash].js',
path: path.resolve(__dirname, 'dist')
},
module: {
rules: [{
test: /\.ts(x?)$/, exclude: /node_modules/,
use: [ {
loader: 'babel-loader', options: babelOptions
}, {
loader: 'awesome-typescript-loader'
} ]
},
{
test: /\.s(c|a)ss$/,
loader: ExtractTextPlugin.extract({
fallback: "style-loader",
loader: "css-loader?modules=true&importLoaders=true&localIdentName=[name]__[local]___[hash:base64:5]!typed-css-modules-loader!sass-loader",
}),
}
]},
plugins: [
new ExtractTextPlugin("style.css"),
new webpack.DefinePlugin({
'process.env': {
'NODE_ENV': JSON.stringify('production')
}
})
]
};