根据docs,我的webpack.config.js中包含以下代码:
library(data.table)
setDT(df)[, Sum := sum(x) * NA^(!((.N > 3) & all(y))), .(grp = rleid(y))]
...
const nodeFolder = 'C:\\Program Files (x86)\\Microsoft VS Code\\bin\\node_modules\\';
但是当我尝试在我的一个模块中使用它时,出现以下错误:new webpack.ProvidePlugin({
//$: 'jquery', tried this and the next one
$: nodeFolder + 'jquery',
jQuery: 'jquery',
'window.jQuery': 'jquery'
}),
。我检查了bin下的文件夹,并且jquery文件夹在那里。
我意识到,因为我有一个通用的node_modules文件夹,这使我的生活变得很困难,但是这个决定不在我的手中。
这里是完整的配置文件供参考:
Unable to resolve path to module 'jquery'