-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathwebpack.config.js
52 lines (49 loc) · 1.31 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
const nodeExternals = require('webpack-node-externals');
const webpack = require("webpack");
const forkTsCheckerNotifierWebpackPlugin = require('fork-ts-checker-notifier-webpack-plugin');
const forkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');
// multiple entries/outputs:
// https://stackoverflow.com/a/63426778/5550687
// https://stackoverflow.com/a/45278943/5550687
// ts-loader has problems: https://github.com/TypeStrong/ts-loader/issues/54
module.exports = {
entry: './src/smart-meter-mbus-dlms.ts',
output: {
path: __dirname,
filename: 'smart-meter-mbus-dlms.js', // <-- Important
//libraryTarget: 'this' // <-- Important
library: {
type: 'this'
}
},
target: 'node', // <-- Important
mode: 'production', // development, production
devtool: 'source-map',
module: {
rules: [
{
test: /\.tsx?$/,
loader: 'ts-loader',
options: {
transpileOnly: true
},
exclude: /node_modules/,
}
]
},
resolve: {
extensions: [ '.ts', '.tsx', '.js' ]
},
optimization: {
minimize: true,
},
externals: [nodeExternals()], // <-- Important
plugins: [
new webpack.DefinePlugin({ CONFIG: JSON.stringify(require("config")) }),
new forkTsCheckerWebpackPlugin(),
new forkTsCheckerNotifierWebpackPlugin({
title: 'TypeScript',
excludeWarnings: false,
}),
]
};