-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
89 lines (85 loc) · 2.73 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
const { resolve } = require('path');
const { writeFileSync, readFileSync } = require('fs');
const _ = require('lodash');
module.exports = {
mode: 'production',
entry: {
di: './src/index.ts',
nuxt: './nuxt.ts',
vue: './vue.ts',
vuex: './vuex.ts',
},
output: {
path: resolve(__dirname, 'dist'),
filename: '[name].umd.js',
library: 'VueDI',
libraryTarget: 'umd',
},
devtool: 'source-map',
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader',
options: {
presets: [
[
'@babel/preset-env',
{
targets: {
ie: '9',
},
},
],
],
},
},
},
{
test: /\.tsx?$/,
use: { loader: 'ts-loader', options: { compilerOptions: { target: 'es5' } } },
},
],
},
resolve: {
extensions: ['.ts', '.tsx', '.wasm', '.mjs', '.js', '.jsx', '.json'],
fallback: { path: require.resolve("path-browserify") }
},
plugins: [new DtsBundlePlugin()],
externals: {
'reflect-metadata': {
commonjs: 'reflect-metadata',
commonjs2: 'reflect-metadata',
amd: 'reflect-metadata',
root: 'Reflect',
},
tslib: {
commonjs: 'tslib',
commonjs2: 'tslib',
amd: 'tslib',
root: 'tslib',
},
},
};
function DtsBundlePlugin() {}
DtsBundlePlugin.prototype.apply = function(compiler) {
compiler.hooks.afterEmit.tap('DtsBundlePlugin', function(...args) {
var dts = require('dts-bundle');
for (const [key, value] of Object.entries(module.exports.entry)) {
const name = key === 'di' ? 'VueDI' : 'VueDI' + _.upperFirst(key);
var path = resolve(module.exports.output.path, module.exports.output.filename)
.replace('[name]', key)
.replace(/\.(j|t)s$/, '.d.ts');
dts.bundle({
name: 'VueDI',
main: value.replace(/\.(j|t)s$/, '.d.ts'),
out: path,
outputAsModuleFolder: true, // to use npm in-package typings
referenceExternals: true,
});
writeFileSync(path, readFileSync(path).toString() + `\nexport as namespace ${name};`);
}
});
};