-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
112 lines (108 loc) · 3.04 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
var path = require('path');
const webpack = require('webpack');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const StylablePlugin = require('stylable-integration/webpack-plugin');
const stylableOptions = { injectBundleCss: true, nsDelimiter:'--' };
const APP = path.join(__dirname, 'app');
module.exports = {
context: APP,
entry: {
presentation: './index.tsx'
},
output: {
path: path.join(__dirname, "public"),
publicPath: "/",
filename: "[name].js"
},
resolve: {
extensions: ['.ts', '.tsx', '.js']
},
module: {
loaders: [
{
test: /\.tsx?$/,
loader: 'ts-loader',
},
{
test: /\.js$/,
include: [
path.join(__dirname, 'node_modules', 'deindent')
],
loader: 'ts-loader',
options: {
// needed so it has a separate transpilation instance
instance: 'lib-compat',
transpileOnly: true
}
},
{
test: /\.css$/,
loader: 'stylable-integration/webpack-loader',
options: stylableOptions
},
{
test: /\.eot(\?\S*)?$/,
loader: 'url-loader?limit=100000&mimetype=application/vnd.ms-fontobject'
},
{
test: /\.woff2(\?\S*)?$/,
loader: 'url-loader?limit=100000&mimetype=application/font-woff2'
},
{
test: /\.woff(\?\S*)?$/,
loader: 'url-loader?limit=100000&mimetype=application/font-woff'
},
{
test: /\.ttf(\?\S*)?$/,
loader: 'url-loader?limit=100000&mimetype=application/font-ttf'
},
{
test: /\.eot(\?v=\d+\.\d+\.\d+)?$/,
loader: "file-loader"
},
{
test: /\.svg(\?v=\d+\.\d+\.\d+)?$/,
loader: "url-loader?limit=10000&mimetype=image/svg+xml"
},
{
test: /\.jpg$/,
loader: "file-loader"
},
{
test: /\.png$/,
loader: "url-loader?mimetype=image/png"
}
]
},
plugins: [
new webpack.optimize.OccurrenceOrderPlugin(),
new StylablePlugin(stylableOptions),
// use for development time hot-swap of only modified modules that the webpack client will load up
new webpack.HotModuleReplacementPlugin(),
new HtmlWebpackPlugin({
inject: true,
template: path.join(__dirname, 'app', 'index.html'),
minify: {
removeComments: true,
collapseWhitespace: true,
removeRedundantAttributes: true,
useShortDoctype: true,
removeEmptyAttributes: true,
removeStyleLinkTypeAttributes: true,
keepClosingSlash: true,
minifyJS: true,
minifyCSS: true,
minifyURLs: true,
},
}),
new CopyWebpackPlugin([
{ from: path.join(__dirname, 'node_modules/reveal.js/css'), to:'reveal.js/css' },
{ from: path.join(__dirname, 'node_modules/reveal.js/lib'), to:'reveal.js/lib' },
{ from: path.join(__dirname, 'node_modules/reveal.js/plugin'), to:'reveal.js/plugin' }
])
],
devServer: {
contentBase: APP
}
};