-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.dev.js
60 lines (55 loc) · 1.41 KB
/
webpack.config.dev.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: './assets/components/Master/index.tsx',
landing: './assets/components/NodeView/NodeView.tsx',
Go: './assets/dependencies/go-get.ts'
/* vendor: [
'react',
'react-dom',
'marked',
'gun'
]
*/
},
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/, /dist/],
use: [ {
loader: 'babel-loader', options: babelOptions
}, {
loader: 'awesome-typescript-loader'
} ]
},
{
test: /\.s(c|a)ss$/, exclude: [/node_modules/, /dist/],
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("[name].style.css"),
//new webpack.optimize.CommonsChunkPlugin({ async: true, minChunks: 2})
]
};