-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwebpack.server.config.js
More file actions
37 lines (34 loc) · 855 Bytes
/
webpack.server.config.js
File metadata and controls
37 lines (34 loc) · 855 Bytes
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
var webpack = require('webpack');
var path = require('path');
var fs = require('fs');
var nodeModules = {};
fs.readdirSync('node_modules')
.filter(function(x) {
return ['.bin'].indexOf(x) === -1;
})
.forEach(function(mod) {
nodeModules[mod] = 'commonjs ' + mod;
});
module.exports = {
entry: './src/server',
target: 'node',
output: {
path: path.join(__dirname, 'server'),
filename: 'app.js'
},
externals: nodeModules,
plugins: [
new webpack.IgnorePlugin(/\.(css|less)$/),
new webpack.BannerPlugin('require("source-map-support").install();',
{ raw: true, entryOnly: false })
],
devtool: 'sourcemap',
module: {
loaders: [
{ test: /\.ts$/, exclude: /node_modules/, loader: "ts-loader!ts-jsx-loader"},
]
},
resolve: {
extensions: ['', '.ts', '.js']
}
}