-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
49 lines (44 loc) · 1.45 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
var fs = require('fs');
var path = require('path');
var webpack = require('webpack');
var nodeModules = {};
var ignoredNodeModulesFolders = [ '.bin' ];
fs.readdirSync('node_modules').
filter(mod => ignoredNodeModulesFolders.indexOf(mod) === -1).
forEach(mod => nodeModules[mod] = `commonjs ${mod}`);
var outputPath = 'bin/async-await-hello-world';
var sourceMapTemplate = '../../[resource-path]';
var config = {
entry: './apps/async-await-hello-world.ts',
target: 'node',
output: {
devtoolModuleFilenameTemplate: sourceMapTemplate,
devtoolFallbackModuleFilenameTemplate: sourceMapTemplate,
path: path.join(__dirname, outputPath),
publicPath: '',
filename: 'app.bundle.js'
},
externals: nodeModules,
plugins: [
// fix stack traces when using source maps
new webpack.BannerPlugin("require('source-map-support').install();",
{
raw: true, // don't wrap in a comment
entryOnly: false // write banner in every file
})
],
resolve: {
alias: {},
extensions: ['', '.ts', '.tsx', '.webpack.js', '.web.js', '.js', '.jsx']
},
devtool: 'source-map',
module: {
loaders: [
{
test: /\.tsx?$/,
loader: 'babel?plugins[]=transform-es2015-modules-commonjs!ts'
},
]
}
};
module.exports = config;