-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
57 lines (56 loc) · 1.41 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
var path = require('path');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
module.exports = {
context: path.join(__dirname, 'app'),
entry: ['babel-core/polyfill', './main.tsx'],
resolve: {
extensions: ['', '.webpack.js', '.web.js', '.ts', '.tsx', '.js'],
alias: {
'@libs': path.join(__dirname, 'libs')
}
},
output: {
path: path.join(__dirname, 'public'),
filename: 'scripts.js'
},
module: {
preLoaders: [
{
test: /\.ts$/,
loader: "tslint-loader"
}
],
loaders: [
{
test: /\.ts(x?)$/,
loader: 'babel-loader!ts-loader',
exclude: /(node_modules|bower_components)/
},
{
test: /\.js$/,
loader: 'babel-loader',
exclude: /(node_modules|bower_components)/
},
{
test: /\.scss$/,
loader: ExtractTextPlugin.extract(
'style-loader',
'css-loader!autoprefixer-loader?{browsers:["last 2 version", "Firefox 15"]}!sass-loader?includePaths[]='
+ path.resolve(__dirname, './node_modules'))
},
{
test: /\.(png|jpg|gif|svg|eot|ttf|woff|woff2)$/,
loader: 'url-loader?limit=10000'
},
{
test: /bootstrap[^\.]+.js$/,
loader: 'imports?jQuery=jquery,$=jquery',
}
]
},
plugins: [
new ExtractTextPlugin('styles.css')
],
debug: true,
devtool: 'inline-source-map'
};