-
Notifications
You must be signed in to change notification settings - Fork 2
/
webpack.config.js
42 lines (41 loc) · 1.15 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
const path = require('path');
const webpack = require('webpack');
module.exports = {
target: 'node',
entry: 'src/index.ts',
mode: 'production',
context: __dirname,
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'index.js',
pathinfo: true,
libraryTarget: 'umd',
},
resolve: {
modules: ['.', 'src', 'node_modules'].map((x) => path.join(__dirname, x)),
extensions: ['.ts', '.js'],
},
module: {
rules: [
{
test: /\.ts$/,
loader: 'ts-loader',
query: {
configFile: path.resolve(__dirname, 'tsconfig.json'),
},
},
{
test: /\.node$/,
loader: 'node-loader',
},
{ test: /\.pug$/, use: ['apply-loader', 'pug-loader'] },
],
},
plugins: [
new webpack.SourceMapDevToolPlugin({
exclude: [/node_modules/, /vendor/],
filename: '[file].map',
}),
],
externals: ['fs/promises', 'path', 'ngx-toastr', /^rxjs/, /^@angular/, /^@ng-bootstrap/, /^tabby-/],
};