-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
61 lines (58 loc) · 1.35 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
var nodeExternals = require('webpack-node-externals');
var webpack = require('webpack');
var path = require('path');
function DtsBundlePlugin() {}
DtsBundlePlugin.prototype.apply = function (compiler) {
compiler.hooks.afterEmit.tap({name: 'DtsBundlePlugin'}, function() {
setTimeout(function() {
var Generator = require('npm-dts').Generator
var generator = new Generator({
entry: 'src/civet.ts'
}, true, true);
generator.generate().catch(function(e) {
throw e;
});
})
})
}
var webpack_opts = {
entry: './src/civet.ts',
mode: "production",
output: {
path: path.resolve(__dirname, "."),
filename: 'index.js',
libraryTarget: 'commonjs2'
},
resolve: {
extensions: ['.ts', '.js'],
modules: ['node_modules', 'src']
},
plugins: [
new webpack.LoaderOptionsPlugin({
options: {
test: /\.ts$/,
ts: {
compiler: 'typescript',
configFileName: 'tsconfig.json'
},
tslint: {
emitErrors: true,
failOnHint: true
}
}
}),
new DtsBundlePlugin()
],
devtool: 'source-map',
module: {
rules: [
{
test: /\.ts$/,
use: ["babel-loader"],
exclude: [path.resolve(__dirname, "node_modules")]
}
]
},
externals: [nodeExternals()]
};
module.exports = webpack_opts;