gpt4 book ai didi

webpack - 使用外部的问题

转载 作者:行者123 更新时间:2023-12-05 00:16:03 26 4
gpt4 key购买 nike

我尝试使用 obj/commonjs 语法设置外部,但查看它返回的包 module.exports = undefined
继承人我的配置:

var path = require('path');

module.exports = {
entry: path.resolve(__dirname, './src/index.js'),
output: {
path: path.resolve(__dirname, './build'),
filename: 'index.js'
},
target: 'node',
resolve: {
alias: {
Utilities: path.resolve(__dirname, './src/utilities/')
},
extensions: ['.js', '.jsx']
},
externals: {
tessel: {
commonjs: "tessel",
},
},
module: {
rules: [
{ test: /\.(js|jsx)$/, use: 'babel-loader' },
]
}
}

最佳答案

您需要设置output.libraryTargetcommonjs . Webpack 使用 libraryTarget确定用于外部的导入类型。更改您的 output到:

output: {
path: path.resolve(__dirname, './build'),
filename: 'index.js',
libraryTarget: 'commonjs'
},

来源 webpack/lib/WebpackOptionsApply.js

关于webpack - 使用外部的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42910956/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com