-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathwebpack.config.js
61 lines (55 loc) · 2.1 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
const path = require("path");
function resolvePath(p) {
return path.resolve(__dirname, p)
}
const config = {
// These are the entry point of our library. We tell webpack to use the name we assign later, when creating the bundle.
// We also use the name to filter the second entry point for applying code minification via UglifyJS
entry: {
'manifesto': ['./src/index.ts']
},
externals: {
'node-fetch': 'node-fetch',
'fetch-cookie/node-fetch': 'fetch-cookie/node-fetch',
'form-data': 'form-data',
'url': 'url',
},
// The output defines how and where we want the bundles. The special value `[name]` in `filename` tells Webpack to use the name we defined above.
// We target a UMD and name it manifesto. When including the bundle in the browser it will be accessible at `window.manifesto`
output: {
path: resolvePath('dist-umd'),
filename: '[name].js',
libraryTarget: 'umd',
library: 'manifesto',
umdNamedDefine: true,
// https://github.com/webpack/webpack/issues/6784#issuecomment-375941431
globalObject: 'typeof self !== \'undefined\' ? self : this',
},
// Add resolve for `tsx` and `ts` files, otherwise Webpack would
// only look for common JavaScript file extension (.js)
resolve: {
extensions: ['.ts', '.tsx', '.js']
},
// Activate source maps for the bundles in order to preserve the original
// source when the user debugs the application
//devtool: 'source-map',
optimization: {
minimize: true
},
// Webpack doesn't understand TypeScript files and a loader is needed.
module: {
rules: [
{
test: /\.ts$/,
loader: 'ts-loader'
}
]
}
}
if (process.env.NODE_WEBPACK_LIBRARY_PATH) {
config.output.path = resolvePath(process.env.NODE_WEBPACK_LIBRARY_PATH);
}
if (process.env.NODE_WEBPACK_LIBRARY_TARGET) {
config.output.libraryTarget = process.env.NODE_WEBPACK_LIBRARY_TARGET;
}
module.exports = config;