加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
webpack.config.js 632 Bytes
一键复制 编辑 原始数据 按行查看 历史
Vadim Chugunov 提交于 2023-08-03 20:26 . Use weaklink crate
'use strict';
/**@type {import('webpack').Configuration}*/
const config = {
target: 'node',
mode: 'production',
output: {
libraryTarget: 'commonjs2',
devtoolModuleFilenameTemplate: '[resource-path]'
},
devtool: 'source-map',
externals: {
vscode: 'commonjs vscode',
mocha: 'commonjs mocha'
},
resolve: {
extensions: ['.js', '.ts', '.tsx'],
modules: ['${CMAKE_BINARY_DIR}/node_modules', '${CMAKE_SOURCE_DIR}']
},
module: {
rules: [
{
test: /\.ts(x?)$/,
exclude: /node_modules/,
use: [{ loader: 'ts-loader' }]
}
]
}
};
module.exports = config;
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化