-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.config.ts
60 lines (57 loc) · 1.63 KB
/
webpack.config.ts
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
import * as webpack from 'webpack'
import * as path from 'path'
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const OptimiseCssAssets = require('optimize-css-assets-webpack-plugin');
const UglifyJSPlugin = require('uglifyjs-webpack-plugin');
const config: webpack.Configuration = {
mode: "production",
entry: {
main: "./src/Scripts/main.ts"//,
// styles: "./_sass/main.scss"
},
output: {
filename: "[name].bundle.js",
chunkFilename: "[name].chunk.js",
path: path.resolve(__dirname, 'assets/scripts/'),
publicPath: "/assets/scripts/"
},
resolve: {
extensions: ['.ts', '.tsx', '.js'],
modules: [
path.resolve('src'),
'node_modules'
]
},
externals: {
//knockout: "knockout"
},
module: {
rules: [{
test: /\.tsx?$/,
loader: 'ts-loader',
exclude: /node_modules/,
},
{
test: /\.(sass|scss)$/,
loader: ExtractTextPlugin.extract(['css-loader', 'sass-loader'])
}
]
},
plugins: [
new ExtractTextPlugin({
filename: './../css/styles.css',
allChunks: true,
}),
new OptimiseCssAssets({
assetNameRegExp: /\.min\.css$/,
cssProcessorOptions: { discardComments: { removeAll: true } }
}),
new UglifyJSPlugin({
sourceMap: true,
include: /\.min\.js$/,
parallel: 4
}),
new webpack.optimize.OccurrenceOrderPlugin(true)
],
}
export default config