Cảm ơn Brendan đã đưa tôi đi đúng hướng. Cuối cùng thì câu trả lời đã được tìm thấy ở đây: http://www.matthiassommer.it / software-architecture / webpack-node-modules /
Phần thông tin quan trọng là:
Thực hiện theo các bước được nêu trong đó, giải pháp sẽ trở thành:
const path = require('path');
const webpack = require('webpack');
module.exports = {
entry: './src/api/index.ts',
target: 'node',
mode: 'production',
module: {
rules: [
{
test: /\.tsx?$/,
loader: 'ts-loader',
exclude: /node_modules/
}
]
},
resolve: {
extensions: ['.js', '.tsx', '.ts', '.json'],
},
output: {
filename: 'api.js',
path: path.resolve(__dirname, 'dist'),
},
plugins: [
new webpack.IgnorePlugin(/fsevents/),
new webpack.IgnorePlugin(/blessed/),
],
externals: {
"saslprep": "require('saslprep')"
}
};
Xin lưu ý rằng trong thử nghiệm của tôi, các dấu ngoặc kép xung quanh "saslprep" dường như được yêu cầu khi nhập các phần mềm bên ngoài.